mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
add simplifiers to .net API
This commit is contained in:
parent
72e7a8a481
commit
2e068e3f56
5 changed files with 199 additions and 4 deletions
|
@ -90,7 +90,8 @@ public:
|
|||
* Freeze internal functions
|
||||
*/
|
||||
void freeze(expr* term);
|
||||
bool frozen(func_decl* f) const { return m_frozen.is_marked(f); }
|
||||
void freeze(expr_ref_vector const& terms) { for (expr* t : terms) freeze(t); }
|
||||
bool frozen(func_decl* f) const { return m_frozen.is_marked(f); }
|
||||
bool frozen(expr* f) const { return is_app(f) && m_frozen.is_marked(to_app(f)->get_decl()); }
|
||||
void freeze_suffix();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue