mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
disable anti-exploration by default
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
ce592d7716
commit
c6fbe38f78
4 changed files with 13 additions and 4 deletions
|
@ -196,6 +196,14 @@ namespace Microsoft.Z3
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Assert a lemma (or multiple) into the solver.
|
||||
/// </summary>
|
||||
public void AddLemma(IEnumerable<BoolExpr> constraints)
|
||||
{
|
||||
AssertLemma(constraints.ToArray());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The number of assertions in the solver.
|
||||
/// </summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue