Skip to content

Commit

Permalink
⬆️ updates ace
Browse files Browse the repository at this point in the history
  • Loading branch information
romainwallon committed Oct 29, 2024
1 parent a278627 commit 3a56346
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply plugin: "maven-publish"
**********************/

group = "fr.cril"
version = "0.1.18"
version = "0.1.19"

def outDir = "${rootDir}/dist"
def jarDir = "${outDir}/home"
Expand All @@ -40,7 +40,7 @@ repositories {
}

dependencies {
implementation files("lib/ace-2.1.jar")
implementation files("lib/ace-2.4.jar")
implementation files("lib/xcsp3-tools-2.3.jar")
implementation group: 'fr.cril', name:'juniverse', version: '0.2.14'

Expand Down
Binary file renamed lib/ace-2.1.jar → lib/ace-2.4.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2445,7 +2445,7 @@ public void setLowerBound(BigInteger lb) {
var solution = solution();
String stringSolution = solution.stream().map(BigInteger::toString).collect(
Collectors.joining(" "));
getHead().getSolver().warmStarter = new WarmStarter(stringSolution, head.solver);
getHead().getSolver().warmStarter = head.solver.new WarmStarter(stringSolution, head.solver);
}
}

Expand All @@ -2456,7 +2456,7 @@ public void setUpperBound(BigInteger ub) {
var solution = solution();
String stringSolution = solution.stream().map(BigInteger::toString).collect(
Collectors.joining(" "));
getHead().getSolver().warmStarter = new WarmStarter(stringSolution, head.solver);
getHead().getSolver().warmStarter = head.solver.new WarmStarter(stringSolution, head.solver);
}
}

Expand Down

0 comments on commit 3a56346

Please sign in to comment.