mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
port fixes from lev's branch. Rename pdd_grobner to pdd_solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c3ed06915c
commit
6b4ddf352d
6 changed files with 169 additions and 129 deletions
|
@ -83,7 +83,7 @@ add_executable(test-z3
|
|||
parray.cpp
|
||||
pb2bv.cpp
|
||||
pdd.cpp
|
||||
pdd_grobner.cpp
|
||||
pdd_solver.cpp
|
||||
permutation.cpp
|
||||
polynomial.cpp
|
||||
polynorm.cpp
|
||||
|
|
|
@ -254,7 +254,7 @@ int main(int argc, char ** argv) {
|
|||
TST_ARGV(cnf_backbones);
|
||||
TST(bdd);
|
||||
TST(pdd);
|
||||
TST(pdd_grobner);
|
||||
TST(pdd_solver);
|
||||
TST(solver_pool);
|
||||
//TST_ARGV(hs);
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "util/rlimit.h"
|
||||
#include "math/grobner/pdd_grobner.h"
|
||||
#include "math/grobner/pdd_solver.h"
|
||||
|
||||
#include "ast/bv_decl_plugin.h"
|
||||
#include "ast/ast_util.h"
|
||||
|
@ -247,7 +247,7 @@ namespace dd {
|
|||
}
|
||||
}
|
||||
|
||||
void tst_pdd_grobner() {
|
||||
void tst_pdd_solver() {
|
||||
dd::test1();
|
||||
dd::test2();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue