@@ -480,15 +480,15 @@ static void test_project() {
480480 vars.push_back (x);
481481 lits.push_back (x <= app_ref (m.mk_app (f, (expr*)x), m));
482482 lits.push_back (x < y);
483- plugin (mdl, vars, lits);
483+ plugin. project (mdl, vars, lits);
484484 std::cout << lits << " \n " ;
485485
486486 // test not-equals
487487 vars.reset ();
488488 lits.reset ();
489489 vars.push_back (x);
490490 lits.push_back (m.mk_not (m.mk_eq (x, y)));
491- plugin (mdl, vars, lits);
491+ plugin. project (mdl, vars, lits);
492492 std::cout << lits << " \n " ;
493493
494494 // test negation of distinct using bound variables
@@ -507,7 +507,7 @@ static void test_project() {
507507 ds.push_back (u);
508508 ds.push_back (z);
509509 lits.push_back (m.mk_not (m.mk_distinct (ds.size (), ds.data ())));
510- plugin (mdl, vars, lits);
510+ plugin. project (mdl, vars, lits);
511511 std::cout << lits << " \n " ;
512512
513513 // test negation of distinct, not using bound variables
@@ -527,7 +527,7 @@ static void test_project() {
527527 ds.push_back (z + 10 );
528528 ds.push_back (u + 4 );
529529 lits.push_back (m.mk_not (m.mk_distinct (ds.size (), ds.data ())));
530- plugin (mdl, vars, lits);
530+ plugin. project (mdl, vars, lits);
531531 std::cout << lits << " \n " ;
532532
533533
@@ -546,7 +546,7 @@ static void test_project() {
546546 ds.push_back (z + 2 );
547547 ds.push_back (u);
548548 lits.push_back (m.mk_distinct (ds.size (), ds.data ()));
549- plugin (mdl, vars, lits);
549+ plugin. project (mdl, vars, lits);
550550 std::cout << lits << " \n " ;
551551
552552 // equality over modulus
@@ -557,7 +557,7 @@ static void test_project() {
557557 vars.push_back (y);
558558 lits.push_back (m.mk_eq (a.mk_mod (y, a.mk_int (3 )), a.mk_int (1 )));
559559 lits.push_back (m.mk_eq (2 *y, z));
560- plugin (mdl, vars, lits);
560+ plugin. project (mdl, vars, lits);
561561 std::cout << lits << " \n " ;
562562
563563 // inequality test
@@ -572,7 +572,7 @@ static void test_project() {
572572 lits.push_back (z <= (x + (2 *y)));
573573 lits.push_back (2 *x < u + 3 );
574574 lits.push_back (2 *y <= u);
575- plugin (mdl, vars, lits);
575+ plugin. project (mdl, vars, lits);
576576 std::cout << lits << " \n " ;
577577
578578 // non-unit equalities
@@ -585,7 +585,7 @@ static void test_project() {
585585 vars.push_back (x);
586586 lits.push_back (m.mk_eq (2 *x, z));
587587 lits.push_back (m.mk_eq (3 *x, u));
588- plugin (mdl, vars, lits);
588+ plugin. project (mdl, vars, lits);
589589 std::cout << lits << " \n " ;
590590
591591
0 commit comments