summaryrefslogtreecommitdiff
path: root/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
diff options
context:
space:
mode:
Diffstat (limited to 'nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java')
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java23
1 files changed, 11 insertions, 12 deletions
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
index d3ffc25d323d..85e50c9f97f8 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java
@@ -24,7 +24,7 @@ import net.adaptivebox.global.BasicBound;
public class EvalElement {
- //The weight for each response (target)
+ // The weight for each response (target)
private static final double weight = 1;
/**
* The expected range of the response value, forms the following objective:
@@ -44,26 +44,25 @@ public class EvalElement {
public BasicBound targetBound = new BasicBound();
public boolean isOptType() {
- return ((targetBound.minValue==BasicBound.MINDOUBLE&&targetBound.maxValue==BasicBound.MINDOUBLE)||
- (targetBound.minValue==BasicBound.MAXDOUBLE&&targetBound.maxValue==BasicBound.MAXDOUBLE));
+ return ((targetBound.minValue == BasicBound.MINDOUBLE && targetBound.maxValue == BasicBound.MINDOUBLE)
+ || (targetBound.minValue == BasicBound.MAXDOUBLE && targetBound.maxValue == BasicBound.MAXDOUBLE));
}
public double evaluateCONS(double targetValue) {
- if(targetValue<targetBound.minValue) {
- return weight*(targetBound.minValue-targetValue);
+ if (targetValue < targetBound.minValue) {
+ return weight * (targetBound.minValue - targetValue);
}
- if(targetValue>targetBound.maxValue) {
- return weight*(targetValue-targetBound.maxValue);
+ if (targetValue > targetBound.maxValue) {
+ return weight * (targetValue - targetBound.maxValue);
}
return 0;
}
public double evaluateOPTIM(double targetValue) {
- if(targetBound.maxValue==BasicBound.MINDOUBLE) { //min mode
- return weight*targetValue;
- } else { //max
- return -weight*targetValue;
+ if (targetBound.maxValue == BasicBound.MINDOUBLE) { // min mode
+ return weight * targetValue;
+ } else { // max
+ return -weight * targetValue;
}
}
}
-