From 24c49ff8baf095018d3c46bffa89907b83882419 Mon Sep 17 00:00:00 2001 From: jskelcy Date: Wed, 28 Nov 2012 21:45:50 -0500 Subject: [PATCH 1/4] Update friends/Graph_Methods.java got rid of some polynomial notes --- friends/Graph_Methods.java | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/friends/Graph_Methods.java b/friends/Graph_Methods.java index 46dc4b2..de6d475 100644 --- a/friends/Graph_Methods.java +++ b/friends/Graph_Methods.java @@ -108,30 +108,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; From c5d146b14c3e57d17db104a13f62a8612235b8eb Mon Sep 17 00:00:00 2001 From: jskelcy Date: Thu, 29 Nov 2012 11:34:09 -0500 Subject: [PATCH 2/4] Update friends/Graph_Methods.java --- friends/Graph_Methods.java | 1 - 1 file changed, 1 deletion(-) diff --git a/friends/Graph_Methods.java b/friends/Graph_Methods.java index de6d475..e680ac9 100644 --- a/friends/Graph_Methods.java +++ b/friends/Graph_Methods.java @@ -4,7 +4,6 @@ import java.util.StringTokenizer; /** - * This class implements a term of a polynomial. * * @author runb-cs112 * From 87d6d205ddbeda932a3334082f974d5d0dd986f2 Mon Sep 17 00:00:00 2001 From: jskelcy Date: Thu, 29 Nov 2012 11:37:29 -0500 Subject: [PATCH 3/4] Update friends/Graph_Methods.java --- friends/Graph_Methods.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/friends/Graph_Methods.java b/friends/Graph_Methods.java index e680ac9..6a2dac2 100644 --- a/friends/Graph_Methods.java +++ b/friends/Graph_Methods.java @@ -4,7 +4,7 @@ import java.util.StringTokenizer; /** - * + *stew can you see and edit this? * @author runb-cs112 * */ From 54469c6aedbc15b143c8eafb46f73317c6f67531 Mon Sep 17 00:00:00 2001 From: stewsmith Date: Thu, 29 Nov 2012 11:39:19 -0500 Subject: [PATCH 4/4] Update friends/Graph_Methods.java --- friends/Graph_Methods.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/friends/Graph_Methods.java b/friends/Graph_Methods.java index 6a2dac2..9eecd4e 100644 --- a/friends/Graph_Methods.java +++ b/friends/Graph_Methods.java @@ -5,6 +5,8 @@ /** *stew can you see and edit this? + * no i cant idiot + * * @author runb-cs112 * */