Skip to content

Commit

Permalink
minor fix in SATSolver API
Browse files Browse the repository at this point in the history
  • Loading branch information
rouven-walter committed Sep 13, 2019
1 parent 633e9b6 commit 3f6d6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/logicng/solvers/SATSolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public Tristate sat(final Literal literal) {
* @param assumptions a collection of literals
* @return the satisfiability of the formula in the solver
*/
public Tristate sat(final Collection<Literal> assumptions) {
public Tristate sat(final Collection<? extends Literal> assumptions) {
return this.sat(null, assumptions);
}

Expand Down

0 comments on commit 3f6d6a2

Please sign in to comment.