Skip to content

Commit

Permalink
only run available solvers
Browse files Browse the repository at this point in the history
  • Loading branch information
karmacoma-eth committed Oct 29, 2024
1 parent 3bdbb76 commit ca81f8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsi/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def main(args: list[str] | None = None) -> int:
# build the commands to run the solvers
# run the solvers in the specified sequence, or fallback to the default order
defs = solver_definitions
enabled_solvers = [solver for solver in defs if defs[solver].enabled]
enabled_solvers = [solver for solver in available_solvers if defs[solver].enabled]

commands: list[Command] = base_commands(
config.sequence or enabled_solvers,
Expand Down

0 comments on commit ca81f8a

Please sign in to comment.