summaryrefslogtreecommitdiff
path: root/CSMath/src/bisection/DualExpr.java
diff options
context:
space:
mode:
Diffstat (limited to 'CSMath/src/bisection/DualExpr.java')
-rw-r--r--CSMath/src/bisection/DualExpr.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/CSMath/src/bisection/DualExpr.java b/CSMath/src/bisection/DualExpr.java
index 4ff5187..0c76840 100644
--- a/CSMath/src/bisection/DualExpr.java
+++ b/CSMath/src/bisection/DualExpr.java
@@ -69,11 +69,11 @@ public class DualExpr {
/**
* The left (or first) part of the expression.
*/
- public DualExpr left;
+ public DualExpr left;
/**
* The right (or second) part of the expression.
*/
- public DualExpr right;
+ public DualExpr right;
/**
* The power to use, for power operations.
@@ -107,14 +107,13 @@ public class DualExpr {
}
/**
- * Create a new binary dual number.
- *
- * @param type
+ * Create a new math expression.
+ *
* The type of operation to perform.
* @param left
* The left operand
* @param right
- * The right operand
+ * The right operand
*/
public DualExpr(DualExpr.ExprType type, DualExpr left, DualExpr right) {
this.type = type;