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

fix the build

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-08-23 16:36:17 -07:00
parent 58854fa44b
commit 3d2fc57b82
3 changed files with 14 additions and 6 deletions

View file

@ -74,11 +74,14 @@ void test_cn_on_expr(nex_sum *t, cross_nested& cn) {
}
void test_cn() {
cross_nested cn([](const nex* n) {
cross_nested cn(
[](const nex* n) {
TRACE("nla_cn_test", tout << *n << "\n";);
return false;
} ,
[](unsigned) { return false; });
[](unsigned) { return false; },
[]{ return 1; }
);
enable_trace("nla_cn");
enable_trace("nla_cn_details");
nex_var* a = cn.mk_var(0);