3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-01 20:17:52 +00:00

app ordering that puts special skolem constants first

This commit is contained in:
Arie Gurfinkel 2017-08-07 11:47:57 +02:00
parent 9f0eb367b1
commit 6cf68bee80
2 changed files with 26 additions and 0 deletions

View file

@ -341,6 +341,10 @@ public:
app* mk_zk_const (ast_manager &m, unsigned idx, sort *s);
void find_zk_const(expr* e, app_ref_vector &out);
bool has_zk_const(expr* e);
struct sk_lt_proc {
bool operator()(const app* a1, const app* a2);
};
}
#endif