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

start on test nla

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-10-09 11:28:08 -07:00 committed by Lev Nachmanson
parent 095fdae457
commit 0a86bd14f7
3 changed files with 31 additions and 27 deletions

View file

@ -1896,7 +1896,7 @@ void test_replace_column() {
void setup_args_parser(argument_parser & parser) {
parser.add_option_with_help_string("-nla", "test nla_solver");
parser.add_option_with_help_string("-nla_fact", "test nla_solver");
parser.add_option_with_help_string("-hnf", "test hermite normal form");
parser.add_option_with_help_string("-gomory", "gomory");
parser.add_option_with_help_string("-intd", "test integer_domain");
@ -3548,8 +3548,8 @@ void test_gomory_cut() {
test_gomory_cut_1();
}
void test_nla() {
nla::solver::test();
void test_nla_factorization() {
nla::solver::test_factorization();
}
void test_lp_local(int argn, char**argv) {
@ -3568,9 +3568,9 @@ void test_lp_local(int argn, char**argv) {
args_parser.print();
if (args_parser.option_is_used("-nla")) {
if (args_parser.option_is_used("-nla_fact")) {
#ifdef Z3DEBUG
test_nla();
test_nla_factorization();
#endif
return finalize(0);
}