3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-09 00:35:47 +00:00

port Grobner

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-09 17:11:30 -07:00
parent 005021f74e
commit 1e5ade1dc2
2 changed files with 41 additions and 37 deletions

View file

@ -174,7 +174,7 @@ protected:
equation * pick_next();
bool simplify_processed(equation * eq);
bool simplify_processed_with_eq(equation * eq);
void simplify_to_process(equation * eq);
@ -280,6 +280,7 @@ public:
void display_monomial(std::ostream & out, monomial const & m) const;
void display(std::ostream & out) const;
void process_simplified_target(ptr_buffer<equation>& to_delete, equation* new_curr, equation*& curr, ptr_buffer<equation>& to_remove);
};
#endif /* GROBNER_H_ */