mirror of
https://github.com/Z3Prover/z3
synced 2025-04-12 12:08:18 +00:00
fix build of test
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5dc8c93897
commit
2512a958b9
|
@ -57,6 +57,7 @@
|
||||||
#include "math/lp/nla_solver.h"
|
#include "math/lp/nla_solver.h"
|
||||||
#include "math/lp/horner.h"
|
#include "math/lp/horner.h"
|
||||||
#include "math/lp/cross_nested.h"
|
#include "math/lp/cross_nested.h"
|
||||||
|
#include "math/lp/int_cube.h"
|
||||||
namespace nla {
|
namespace nla {
|
||||||
void test_horner();
|
void test_horner();
|
||||||
void test_order_lemma();
|
void test_order_lemma();
|
||||||
|
@ -2962,7 +2963,8 @@ void test_term() {
|
||||||
std::cout << "\n";
|
std::cout << "\n";
|
||||||
int_solver i_s(solver);
|
int_solver i_s(solver);
|
||||||
solver.set_int_solver(&i_s);
|
solver.set_int_solver(&i_s);
|
||||||
lia_move m = i_s.find_cube();
|
int_cube cuber(i_s);
|
||||||
|
lia_move m = cuber();
|
||||||
|
|
||||||
std::cout <<"\n" << lia_move_to_string(m) << std::endl;
|
std::cout <<"\n" << lia_move_to_string(m) << std::endl;
|
||||||
model.clear();
|
model.clear();
|
||||||
|
|
Loading…
Reference in a new issue