summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-04 13:35:47 +0200
committerNoel Grandin <noel@peralex.com>2014-08-04 14:50:58 +0200
commitd352735a7f2f74d3524adaa2f4d8cff61f60c5c6 (patch)
treed80d39c68f3cae9154c641e47825feedb2e0227a
parent02f0102b8bd7793ddd2fe7a54c46d41b9a608cec (diff)
java: remove some unused fields in the ODK examples
Change-Id: Ic6b4f18aefba6603af51d17d061e3f821e95261f
-rw-r--r--nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java
index e0953d12d655..f6e063ff08a6 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/global/BasicBound.java
@@ -67,7 +67,6 @@ public class BasicBound {
public static BasicBound getBound(double[] data) {
BasicBound bound = new BasicBound();
if(data!=null) {
- double minV, maxV;
if(data.length>0) {
bound.minValue = data[0];
bound.maxValue = data[0];
@@ -91,4 +90,4 @@ public class BasicBound {
public double getRandomValue(){
return RandomGenerator.doubleRangeRandom(minValue, maxValue);
}
-} \ No newline at end of file
+}