From 8f42378c707c8c962082e394fe67ac3bb5cd557b Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Sun, 14 Oct 2018 11:42:53 -0400 Subject: General cleanup --- CSMath/src/bisection/PreBisection.java | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'CSMath/src/bisection/PreBisection.java') diff --git a/CSMath/src/bisection/PreBisection.java b/CSMath/src/bisection/PreBisection.java index 39bbd60..ef56610 100644 --- a/CSMath/src/bisection/PreBisection.java +++ b/CSMath/src/bisection/PreBisection.java @@ -9,7 +9,16 @@ package bisection; */ import java.util.function.DoubleUnaryOperator; +/** + * Previous attempt at bisection. + * @author bjculkin + * + */ public class PreBisection { + /** + * Main method. + * @param args Unused CLI args. + */ public static void main(String[] args) { // The functions we're approximating a root for DoubleUnaryOperator functionA = x -> Math.cos(x) - x; -- cgit v1.2.3