3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00

more descriptive naming convention

This commit is contained in:
Nikolaj Bjorner 2021-03-15 15:48:33 -07:00
parent 4b3fecc35e
commit d03fdf5fed
7 changed files with 16 additions and 16 deletions

View file

@ -280,7 +280,7 @@ void macro_decls::erase_last(ast_manager& m) {
m_decls->pop_back();
}
ast_manager * ast_context::mk_ast_manager() {
ast_manager * ast_context_params::mk_ast_manager() {
if (m_manager)
return m_manager;
ast_manager * r = alloc(ast_manager,

View file

@ -160,7 +160,7 @@ public:
virtual void updt_params(params_ref const& p) = 0;
};
class ast_context : public context_params {
class ast_context_params : public context_params {
ast_manager* m_manager { nullptr };
public:
/**
@ -194,7 +194,7 @@ public:
protected:
ast_context m_params;
ast_context_params m_params;
bool m_main_ctx;
symbol m_logic;
bool m_interactive_mode;