Skip to content

Commit

Permalink
fix(ci): Update sat solver command line arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
arbimo committed Nov 4, 2024
1 parent 1009b7e commit 45b1cc6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ci/sat.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import time

os.system("cargo build --profile ci --bin aries-sat")
solver = "target/ci/aries-sat --threads 1"
solver = "target/ci/aries-sat"

solver_cmd = solver + " {params} --source {archive} {instance}"

Expand Down Expand Up @@ -42,4 +42,3 @@ def run_all(archive, sat):

run_all("examples/sat/instances/test-sat.zip", sat=True)
run_all("examples/sat/instances/test-unsat.zip", sat=False)

0 comments on commit 45b1cc6

Please sign in to comment.