summaryrefslogtreecommitdiff
path: root/src/smt/model.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2017-03-24 09:37:13 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2017-03-24 09:37:32 -0500
commit67ea40d24cbbcd3f490248754a6abc1989bacc7b (patch)
treef74d7a52a5046e346035b1c5b5abec1f17004033 /src/smt/model.h
parent2c1e5b35ba688c0df297b0510058454c54bab54d (diff)
Refactor model building for quantifiers to be a single pass, simplification. Modify datatypes collect model info to include dt equivalence classes. Further work on sygus. Other minor fixes.
Diffstat (limited to 'src/smt/model.h')
-rw-r--r--src/smt/model.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/smt/model.h b/src/smt/model.h
index fd31655f4..523751d9c 100644
--- a/src/smt/model.h
+++ b/src/smt/model.h
@@ -75,7 +75,7 @@ class ModelBuilder {
public:
ModelBuilder() { }
virtual ~ModelBuilder() { }
- virtual void buildModel(Model* m, bool fullModel) = 0;
+ virtual bool buildModel(Model* m) = 0;
};/* class ModelBuilder */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback