3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

disable dotnet in ci script. It seems to get turned on even if dotnet bindings are not requested

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-09-11 03:14:31 -07:00
parent 1e11b62bc6
commit 36a14a354a
4 changed files with 34 additions and 14 deletions

View file

@ -18,6 +18,7 @@ Copyright (c) 2015 Microsoft Corporation
#include "ast/rewriter/th_rewriter.h"
#include "tactic/fd_solver/fd_solver.h"
#include "solver/solver.h"
#include "ast/arith_decl_plugin.h"
static void test1() {
ast_manager m;
@ -194,9 +195,20 @@ static void test3() {
}
}
static void test4() {
ast_manager m;
reg_decl_plugins(m);
arith_util arith(m);
expr_ref a(m.mk_const(symbol("a"), arith.mk_int()), m);
expr_ref b(m.mk_const(symbol("b"), arith.mk_int()), m);
expr_ref eq(m.mk_eq(a,b), m);
std::cout << "is_atom: " << is_atom(m, eq) << "\n";
}
void tst_pb2bv() {
test1();
test2();
test3();
test4();
}