diff --git a/friends/Graph_Methods.java b/friends/Graph_Methods.java index 46dc4b2..9eecd4e 100644 --- a/friends/Graph_Methods.java +++ b/friends/Graph_Methods.java @@ -4,8 +4,9 @@ import java.util.StringTokenizer; /** - * This class implements a term of a polynomial. - * + *stew can you see and edit this? + * no i cant idiot + * * @author runb-cs112 * */ @@ -108,30 +109,7 @@ public Graph_Methods() { poly = null; } - /** - * Reads a polynomial from an input stream (file or keyboard). The storage format - * of the polynomial is: - *
-     *      
-     *      
-     *     ...
-     *      
-     * 
- * with the guarantee that schools will be in descending order. For example: - *
-     *      4 5
-     *     -2 3
-     *      2 1
-     *      3 0
-     * 
- * which represents the polynomial: - *
-     *      4*x^5 - 2*x^3 + 2*x + 3
-     * 
- * - * @param br BufferedReader from which a polynomial is to be read - * @throws IOException If there is any input error in reading the polynomial - */ + public Polynomial(BufferedReader br) throws IOException { String line; StringTokenizer tokenizer;