summaryrefslogtreecommitdiff
path: root/src/theory/sets/scrutinize.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/sets/scrutinize.h')
-rw-r--r--src/theory/sets/scrutinize.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/theory/sets/scrutinize.h b/src/theory/sets/scrutinize.h
new file mode 100644
index 000000000..a0e2a1d5b
--- /dev/null
+++ b/src/theory/sets/scrutinize.h
@@ -0,0 +1,44 @@
+/********************* */
+/*! \file scrutinize.h
+ ** \verbatim
+ ** Original author: Kshitij Bansal
+ ** Major contributors: none
+ ** Minor contributors (to current version): none
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2013-2014 New York University and The University of Iowa
+ ** See the file COPYING in the top-level source directory for licensing
+ ** information.\endverbatim
+ **
+ ** \brief Check consistency of internal data structures.
+ **
+ ** Some checks are very low-level with respect to TheorySetsPrivate
+ ** implementation, and hence might become outdated pretty quickly.
+ **/
+
+#pragma once
+
+#include "theory/sets/theory_sets_private.h"
+
+namespace CVC4 {
+namespace theory {
+namespace sets {
+
+class TheorySetsScrutinize {
+ TheorySetsPrivate* d_theory;
+public:
+ TheorySetsScrutinize(TheorySetsPrivate* theory): d_theory(theory) {
+ Debug("sets") << "[sets] scrunitize enabled" << std::endl;
+ }
+ void postCheckInvariants() const {
+ Debug("sets-scrutinize") << "[sets-scrutinize] postCheckInvariants()" << std::endl;
+
+ // assume not in conflict, and complete:
+ // - try building model
+ // - check it
+ }
+};
+
+}/* CVC4::theory::sets namespace */
+}/* CVC4::theory namespace */
+}/* CVC4 namespace */
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback