mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
set up test for slicing
This commit is contained in:
parent
71ef78fb25
commit
136e819cb9
5 changed files with 24 additions and 4 deletions
|
@ -109,6 +109,7 @@ add_executable(test-z3
|
|||
simple_parser.cpp
|
||||
simplex.cpp
|
||||
simplifier.cpp
|
||||
slicing.cpp
|
||||
small_object_allocator.cpp
|
||||
smt2print_parse.cpp
|
||||
smt_context.cpp
|
||||
|
|
|
@ -267,6 +267,7 @@ int main(int argc, char ** argv) {
|
|||
TST(fixplex);
|
||||
TST(mod_interval);
|
||||
TST(viable);
|
||||
TST(slicing);
|
||||
TST(totalizer);
|
||||
TST(distribution);
|
||||
}
|
||||
|
|
15
src/test/slicing.cpp
Normal file
15
src/test/slicing.cpp
Normal file
|
@ -0,0 +1,15 @@
|
|||
#include "math/polysat/slicing.h"
|
||||
|
||||
namespace polysat {
|
||||
|
||||
class test_slicing {
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
|
||||
void tst_slicing() {
|
||||
using namespace polysat;
|
||||
std::cout << "ok\n";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue