mirror of
https://github.com/Z3Prover/z3
synced 2026-02-22 16:27:37 +00:00
work on nl testing
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
7aa1ba1905
commit
05029c6f03
3 changed files with 25 additions and 11 deletions
|
|
@ -1084,7 +1084,7 @@ namespace nlsat {
|
|||
* "Solving Satisfiability of Polynomial Formulas By Sample - Cell Projection"
|
||||
* https://arxiv.org/abs/2003.00409
|
||||
*/
|
||||
void project_cdcac(polynomial_ref_vector & ps, var max_x) {
|
||||
void project(polynomial_ref_vector & ps, var max_x) {
|
||||
bool first = true;
|
||||
if (ps.empty())
|
||||
return;
|
||||
|
|
@ -1142,10 +1142,6 @@ namespace nlsat {
|
|||
|
||||
}
|
||||
|
||||
void project(polynomial_ref_vector & ps, var max_x) {
|
||||
project_cdcac(ps, max_x);
|
||||
}
|
||||
|
||||
bool check_already_added() const {
|
||||
for (bool b : m_already_added_literal) {
|
||||
(void)b;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue