3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-04 14:25:46 +00:00
This commit is contained in:
Nikolaj Bjorner 2021-04-09 12:29:13 -07:00
parent 7aa4fc2d8f
commit 070eba0fe8
2 changed files with 20 additions and 8 deletions

View file

@ -43,11 +43,12 @@ Notes:
class func_decls {
func_decl * m_decls;
ast_manager* m { nullptr };
func_decl * m_decls { nullptr };
bool signatures_collide(func_decl* f, func_decl* g) const;
bool signatures_collide(unsigned n, sort*const* domain, sort* range, func_decl* g) const;
public:
func_decls():m_decls(nullptr) {}
func_decls() {}
func_decls(ast_manager & m, func_decl * f);
void finalize(ast_manager & m);
bool contains(func_decl * f) const;