diff options
author | Noel Grandin <noel@peralex.com> | 2014-08-15 16:51:21 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-08-20 12:12:43 +0200 |
commit | 0ce1267ae27c840a417ee1758aa016da033405fa (patch) | |
tree | fa77c2698596a365a0e0bee8d60586c7aa04a94b /nlpsolver | |
parent | 609f7b85030eb9fa85a87fd591dcf53fa1143950 (diff) |
remove more unnecessary constructor declarations
Change-Id: Ie5a243006b112c2e6daf12992f3dba8baf12748d
Diffstat (limited to 'nlpsolver')
-rw-r--r-- | nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java index bdbf51bfdfa5..81612dc80f2e 100644 --- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java +++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/encode/EvalElement.java @@ -42,8 +42,6 @@ public class EvalElement { */ public BasicBound targetBound = new BasicBound(); - public EvalElement() {} - public boolean isOptType() { return ((targetBound.minValue==BasicBound.MINDOUBLE&&targetBound.maxValue==BasicBound.MINDOUBLE)|| (targetBound.minValue==BasicBound.MAXDOUBLE&&targetBound.maxValue==BasicBound.MAXDOUBLE)); |