mirror of
https://github.com/Z3Prover/z3
synced 2025-06-22 05:43:39 +00:00
clean up a trace statement
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
20af3dd675
commit
11995e58f4
2 changed files with 8 additions and 2 deletions
|
@ -3127,7 +3127,10 @@ public:
|
||||||
auto vi1 = register_theory_var_in_lar_solver(v1);
|
auto vi1 = register_theory_var_in_lar_solver(v1);
|
||||||
auto vi2 = register_theory_var_in_lar_solver(v2);
|
auto vi2 = register_theory_var_in_lar_solver(v2);
|
||||||
lp::constraint_index ci1, ci2, ci3, ci4;
|
lp::constraint_index ci1, ci2, ci3, ci4;
|
||||||
TRACE("arith", tout << "fixed: " << mk_pp(get_owner(v1), m) << " " << mk_pp(get_owner(v2), m) << " " << bound << " " << has_lower_bound(vi2, ci3, bound) << "\n";);
|
|
||||||
|
TRACE("arith",
|
||||||
|
bool hlb = has_lower_bound(vi2, ci3, bound);
|
||||||
|
tout << "fixed: " << mk_pp(get_owner(v1), m) << " " << mk_pp(get_owner(v2), m) << " " << bound << " " << hlb << std::endl;);
|
||||||
if (has_lower_bound(vi2, ci3, bound) && has_upper_bound(vi2, ci4, bound)) {
|
if (has_lower_bound(vi2, ci3, bound) && has_upper_bound(vi2, ci4, bound)) {
|
||||||
VERIFY (has_lower_bound(vi1, ci1, bound));
|
VERIFY (has_lower_bound(vi1, ci1, bound));
|
||||||
VERIFY (has_upper_bound(vi1, ci2, bound));
|
VERIFY (has_upper_bound(vi1, ci2, bound));
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
add_executable(lp_tst
|
add_executable(lp_tst
|
||||||
EXCLUDE_FROM_ALL
|
EXCLUDE_FROM_ALL
|
||||||
lp_main.cpp lp.cpp nla_solver_test.cpp $<TARGET_OBJECTS:util> $<TARGET_OBJECTS:polynomial> $<TARGET_OBJECTS:nlsat> $<TARGET_OBJECTS:lp> )
|
lp_main.cpp lp.cpp nla_solver_test.cpp $<TARGET_OBJECTS:util>
|
||||||
|
$<TARGET_OBJECTS:polynomial> $<TARGET_OBJECTS:nlsat>
|
||||||
|
$<TARGET_OBJECTS:lp> $<TARGET_OBJECTS:grobner>
|
||||||
|
$<TARGET_OBJECTS:interval> $<TARGET_OBJECTS:dd> $<TARGET_OBJECTS:ast>)
|
||||||
target_compile_definitions(lp_tst PRIVATE ${Z3_COMPONENT_CXX_DEFINES})
|
target_compile_definitions(lp_tst PRIVATE ${Z3_COMPONENT_CXX_DEFINES})
|
||||||
target_compile_options(lp_tst PRIVATE ${Z3_COMPONENT_CXX_FLAGS})
|
target_compile_options(lp_tst PRIVATE ${Z3_COMPONENT_CXX_FLAGS})
|
||||||
target_include_directories(lp_tst PRIVATE ${Z3_COMPONENT_EXTRA_INCLUDE_DIRS})
|
target_include_directories(lp_tst PRIVATE ${Z3_COMPONENT_EXTRA_INCLUDE_DIRS})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue