[Libreoffice-commits] core.git: nlpsolver/ThirdParty
Julien Nabet (via logerrit)
logerrit at kemper.freedesktop.org
Mon Jul 19 16:01:59 UTC 2021
nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java | 3 ++-
nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java | 3 +--
2 files changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 695d926248acf6e26222b26242f95fb46066aae6
Author: Julien Nabet <serval2412 at yahoo.fr>
AuthorDate: Sun Jul 18 19:37:20 2021 +0200
Commit: Julien Nabet <serval2412 at yahoo.fr>
CommitDate: Mon Jul 19 18:01:24 2021 +0200
AbsGTBehavior should implement ILibEngine
so we're sure all derivatives will have to
Change-Id: I4e62d02f01382dbc95b28ffcb3d278aa31427f85
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119145
Tested-by: Jenkins
Reviewed-by: Todor Balabanov <todor.balabanov at gmail.com>
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java
index c96174227b93..b6aacd3ccc40 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/AbsGTBehavior.java
@@ -18,12 +18,13 @@
package net.adaptivebox.deps.behavior;
import net.adaptivebox.goodness.IGoodnessCompareEngine;
+import net.adaptivebox.knowledge.ILibEngine;
import net.adaptivebox.knowledge.Library;
import net.adaptivebox.knowledge.SearchPoint;
import net.adaptivebox.problem.ProblemEncoder;
import net.adaptivebox.space.BasicPoint;
-abstract public class AbsGTBehavior {
+abstract public class AbsGTBehavior implements ILibEngine {
// The referred social library
protected Library socialLib;
diff --git a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java
index ada457f3233c..21bc2fb82de3 100644
--- a/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java
+++ b/nlpsolver/ThirdParty/EvolutionarySolver/src/net/adaptivebox/deps/behavior/DEGTBehavior.java
@@ -30,13 +30,12 @@ package net.adaptivebox.deps.behavior;
import net.adaptivebox.global.RandomGenerator;
import net.adaptivebox.goodness.IGoodnessCompareEngine;
-import net.adaptivebox.knowledge.ILibEngine;
import net.adaptivebox.knowledge.Library;
import net.adaptivebox.knowledge.SearchPoint;
import net.adaptivebox.problem.ProblemEncoder;
import net.adaptivebox.space.BasicPoint;
-public class DEGTBehavior extends AbsGTBehavior implements ILibEngine {
+public class DEGTBehavior extends AbsGTBehavior {
//Number of differential vectors, normally be 1 or 2
private static final int DVNum = 2;
More information about the Libreoffice-commits
mailing list