3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-06-05 00:20:50 +00:00

Update model_core.h

This commit is contained in:
Nikolaj Bjorner 2026-06-01 19:47:40 -07:00 committed by GitHub
parent 358378a6f0
commit 78a7b4d3a6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,6 +58,8 @@ public:
return eval(f, r) && m.is_false(r);
}
void add_lambda_defs();
unsigned get_num_constants() const { return m_const_decls.size(); }
unsigned get_num_functions() const { return m_func_decls.size(); }
func_decl * get_constant(unsigned i) const { return m_const_decls[i]; }