summaryrefslogtreecommitdiff
path: root/src/theory/ee_setup_info.h
blob: c029fcd04427f83ce540a762645c896fdce25d08 (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
/*********************                                                        */
/*! \file ee_setup_info.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Andrew Reynolds
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2020 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
 **
 ** \brief Setup information for an equality engine.
 **/

#include "cvc4_private.h"

#ifndef CVC4__THEORY__EE_SETUP_INFO__H
#define CVC4__THEORY__EE_SETUP_INFO__H

#include <string>

namespace CVC4 {
namespace theory {

namespace eq {
class EqualityEngineNotify;
}

/**
 * This is a helper class that encapsulates instructions for how a Theory
 * wishes to initialize and setup notifications with its official equality
 * engine, e.g. via a notification class (eq::EqualityEngineNotify).
 *
 * This includes (at a basic level) the arguments to the equality engine
 * constructor that theories may wish to modify. This information is determined
 * by the Theory during needsEqualityEngine.
 */
struct EeSetupInfo
{
  EeSetupInfo() : d_notify(nullptr), d_constantsAreTriggers(true) {}
  /** The notification class of the theory */
  eq::EqualityEngineNotify* d_notify;
  /** The name of the equality engine */
  std::string d_name;
  /** Constants are triggers */
  bool d_constantsAreTriggers;
};

}  // namespace theory
}  // namespace CVC4

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