File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,6 @@ class EncodingContext
44
44
void resetUniqueId ();
45
45
// / Returns the current fresh slack id and increments it.
46
46
unsigned newUniqueId ();
47
- // / Clears the entire context, erasing everything.
48
- // / To be used before a model checking engine starts.
49
- void clear ();
50
47
51
48
// / Sets the current solver used by the current engine for
52
49
// / SMT variable declaration.
@@ -139,12 +136,7 @@ class EncodingContext
139
136
void pushSolver ();
140
137
void popSolver ();
141
138
void addAssertion (smtutil::Expression const & _e);
142
- size_t solverStackHeight () { return m_assertions.size (); } const
143
- smtutil::SolverInterface* solver ()
144
- {
145
- solAssert (m_solver, " " );
146
- return m_solver;
147
- }
139
+ size_t solverStackHeight () const { return m_assertions.size (); }
148
140
// @}
149
141
150
142
SymbolicState& state () { return m_state; }
You can’t perform that action at this time.
0 commit comments