summaryrefslogtreecommitdiff
path: root/src/theory/logic_info.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-11-26 17:40:31 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-11-26 17:40:31 +0000
commit78f459b303ed292a297a36cd0c435fdd025b0865 (patch)
tree80be491bc4525d70d599fbd72869dd592f70d56a /src/theory/logic_info.h
parentc3ca3d8c58cc9954f8ad190e1e2dedbcbb5372f0 (diff)
fixup for incremental solving
Diffstat (limited to 'src/theory/logic_info.h')
-rw-r--r--src/theory/logic_info.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/theory/logic_info.h b/src/theory/logic_info.h
index e2d8f3da6..fd81ea629 100644
--- a/src/theory/logic_info.h
+++ b/src/theory/logic_info.h
@@ -22,6 +22,7 @@
#define __CVC4__LOGIC_INFO_H
#include <string>
+#include <vector>
#include "expr/kind.h"
namespace CVC4 {
@@ -43,7 +44,7 @@ namespace CVC4 {
*/
class CVC4_PUBLIC LogicInfo {
mutable std::string d_logicString; /**< an SMT-LIB-like logic string */
- bool d_theories[theory::THEORY_LAST]; /**< set of active theories */
+ std::vector<bool> d_theories; /**< set of active theories */
size_t d_sharingTheories; /**< count of theories that need sharing */
// for arithmetic
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback