summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/fun_def_engine.cpp
blob: 354d90b8baf744285f943579de8604e92f457e72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*********************                                                        */
/*! \file fun_def_engine.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Andrew Reynolds, Paul Meng
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2017 by the authors listed in the file AUTHORS
 ** in the top-level source directory) and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** This class implements specialized techniques for (recursively) defined functions
 **/

#include <vector>

#include "theory/quantifiers/fun_def_engine.h"
#include "theory/rewriter.h"
#include "theory/quantifiers/term_database.h"

using namespace CVC4;
using namespace std;
using namespace CVC4::theory;
using namespace CVC4::theory::quantifiers;
using namespace CVC4::kind;

FunDefEngine::FunDefEngine( QuantifiersEngine * qe, context::Context* c ) : QuantifiersModule( qe ) {
  
}

/* whether this module needs to check this round */
bool FunDefEngine::needsCheck( Theory::Effort e ) { 
  return e>=Theory::EFFORT_LAST_CALL; 
}

/* reset at a round */
void FunDefEngine::reset_round( Theory::Effort e ){
  //TODO
}

/* Call during quantifier engine's check */
void FunDefEngine::check( Theory::Effort e, unsigned quant_e ) {
  //TODO
}

/* Called for new quantifiers */
void FunDefEngine::registerQuantifier( Node q ) {
  //TODO
}

/** called for everything that gets asserted */
void FunDefEngine::assertNode( Node n ) {
  //TODO
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback