summaryrefslogtreecommitdiff
path: root/src/theory/uf/inst_strategy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/uf/inst_strategy.h')
-rw-r--r--src/theory/uf/inst_strategy.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/theory/uf/inst_strategy.h b/src/theory/uf/inst_strategy.h
index 6baa5b147..5a3b9cc3d 100644
--- a/src/theory/uf/inst_strategy.h
+++ b/src/theory/uf/inst_strategy.h
@@ -34,25 +34,6 @@ class InstantiatorTheoryUf;
//instantiation strategies
-class InstStrategyCheckCESolved : public InstStrategy{
-private:
- /** InstantiatorTheoryUf class */
- InstantiatorTheoryUf* d_th;
- /** is solved? */
- std::map< Node, bool > d_solved;
- /** calc if f is solved */
- void calcSolved( Node f );
- /** process functions */
- void processResetInstantiationRound( Theory::Effort effort );
- int process( Node f, Theory::Effort effort, int e );
-public:
- InstStrategyCheckCESolved( InstantiatorTheoryUf* th, QuantifiersEngine* ie ) :
- InstStrategy( ie ), d_th( th ){}
- ~InstStrategyCheckCESolved(){}
- /** identify */
- std::string identify() const { return std::string("CheckCESolved"); }
-};/* class InstStrategyCheckCESolved */
-
class InstStrategyUserPatterns : public InstStrategy{
private:
/** InstantiatorTheoryUf class */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback