|
|
@ -14,6 +14,16 @@ public class OpRelOpBound |
|
|
protected boolean numeric; |
|
|
protected boolean numeric; |
|
|
protected double bound; |
|
|
protected double bound; |
|
|
|
|
|
|
|
|
|
|
|
/** Constructor, no bound */ |
|
|
|
|
|
public OpRelOpBound(String op, MinMax minMax) |
|
|
|
|
|
{ |
|
|
|
|
|
this.op = op; |
|
|
|
|
|
this.minMax = minMax; |
|
|
|
|
|
this.relOp = RelOp.COMPUTE_VALUES; |
|
|
|
|
|
numeric = true; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** Constructor, with relOp and bound */ |
|
|
public OpRelOpBound(String op, MinMax minMax, RelOp relOp, Double boundObject) |
|
|
public OpRelOpBound(String op, MinMax minMax, RelOp relOp, Double boundObject) |
|
|
{ |
|
|
{ |
|
|
this.op = op; |
|
|
this.op = op; |
|
|
|