Skip to content

Commit

Permalink
Fixup satisfy_all arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdrake committed Jul 5, 2015
1 parent 1fba64e commit f479a48
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyeda/boolalg/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,9 @@ def satisfy_all(self, **params):
propagation_limit = params.get('propagation_limit', -1)
decision_limit = params.get('decision_limit', -1)
seed = params.get('seed', 1)
yield from picosat.satisfy_all(self.nvars, self.clauses)
yield from picosat.satisfy_all(self.nvars, self.clauses, verbosity,
default_phase, propagation_limit,
decision_limit, seed)

@staticmethod
def soln2point(soln, litmap):
Expand Down

0 comments on commit f479a48

Please sign in to comment.