mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 10:55:50 +00:00
api_context: remove basic&arith fids fields
these are now constant,s o we can save some space the remaining ones need to be made constant as well..
This commit is contained in:
parent
afdf80509a
commit
49906a5a58
2 changed files with 3 additions and 7 deletions
|
@ -97,9 +97,7 @@ namespace api {
|
|||
u_map<api::object*> m_allocated_objects; // !< table containing current set of allocated API objects
|
||||
unsigned_vector m_free_object_ids; // !< free list of identifiers available for allocated objects.
|
||||
|
||||
family_id m_basic_fid;
|
||||
family_id m_array_fid;
|
||||
family_id m_arith_fid;
|
||||
family_id m_bv_fid;
|
||||
family_id m_dt_fid;
|
||||
family_id m_datalog_fid;
|
||||
|
@ -152,9 +150,9 @@ namespace api {
|
|||
datatype_util& dtutil() { return m_dt_plugin->u(); }
|
||||
seq_util& sutil() { return m_sutil; }
|
||||
recfun::util& recfun() { return m_recfun; }
|
||||
family_id get_basic_fid() const { return m_basic_fid; }
|
||||
family_id get_basic_fid() const { return basic_family_id; }
|
||||
family_id get_array_fid() const { return m_array_fid; }
|
||||
family_id get_arith_fid() const { return m_arith_fid; }
|
||||
family_id get_arith_fid() const { return arith_family_id; }
|
||||
family_id get_bv_fid() const { return m_bv_fid; }
|
||||
family_id get_dt_fid() const { return m_dt_fid; }
|
||||
family_id get_datalog_fid() const { return m_datalog_fid; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue