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:
parent
58854fa44b
commit
3d2fc57b82
3 changed files with 14 additions and 6 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue