mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
fix dotnet example
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9e59bba80e
commit
14d780fb2b
1 changed files with 2 additions and 1 deletions
|
@ -976,7 +976,8 @@ namespace test_mapi
|
|||
|
||||
using (Context ctx = new Context(new Dictionary<string, string>() { { "MODEL", "true" } }))
|
||||
{
|
||||
Expr a = ctx.ParseSMTLIB2File(filename);
|
||||
BoolExpr[] fmls = ctx.ParseSMTLIB2File(filename);
|
||||
BoolExpr a = ctx.MkAnd(fmls);
|
||||
|
||||
Console.WriteLine("SMT2 file read time: " + (System.DateTime.Now - before).TotalSeconds + " sec");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue