summaryrefslogtreecommitdiff
path: root/src/decision/decision_strategy.h
blob: 87c463c29877d0902758c2c469f858eb7b4fb8da (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/******************************************************************************
 * Top contributors (to current version):
 *   Kshitij Bansal, Andrew Reynolds, Mathias Preiner
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 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.
 * ****************************************************************************
 *
 * Decision strategy.
 */

#include "cvc5_private.h"

#ifndef CVC5__DECISION__DECISION_STRATEGY_H
#define CVC5__DECISION__DECISION_STRATEGY_H

#include <vector>

#include "expr/node.h"
#include "prop/sat_solver_types.h"
#include "smt/term_formula_removal.h"

namespace cvc5 {

class DecisionEngineOld;

namespace context {
  class Context;
  }  // namespace context

namespace decision {
  
class DecisionEngine;

class DecisionStrategy {
protected:
 DecisionEngineOld* d_decisionEngine;

public:
 DecisionStrategy(DecisionEngineOld* de, context::Context* c)
     : d_decisionEngine(de)
 {
  }

  virtual ~DecisionStrategy() { }

  virtual prop::SatLiteral getNext(bool&) = 0;
};/* class DecisionStrategy */

class ITEDecisionStrategy : public DecisionStrategy {
public:
 ITEDecisionStrategy(DecisionEngineOld* de, context::Context* c)
     : DecisionStrategy(de, c)
 {
  }
  /**
   * Add that assertion is an (input) assertion, not corresponding to a
   * skolem definition.
   */
  virtual void addAssertion(TNode assertion) = 0;
  /**
   * Add that lem is the skolem definition for skolem, which is a part of
   * the current assertions.
   */
  virtual void addSkolemDefinition(TNode lem, TNode skolem) = 0;
};/* class ITEDecisionStrategy */

}  // namespace decision
}  // namespace cvc5

#endif /* CVC5__DECISION__DECISION_STRATEGY_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback