3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-09 08:45:47 +00:00

add virtual function requirement to dependent_expr_state

This commit is contained in:
Nikolaj Bjorner 2022-11-19 18:46:31 +07:00
parent dcc995f0e5
commit a81a5ec68c
2 changed files with 7 additions and 0 deletions

View file

@ -46,6 +46,7 @@ public:
virtual unsigned size() const = 0;
virtual dependent_expr const& operator[](unsigned i) = 0;
virtual void update(unsigned i, dependent_expr const& j) = 0;
virtual void add(dependent_expr const& j) = 0;
virtual bool inconsistent() = 0;
virtual model_reconstruction_trail& model_trail() = 0;