projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19634b3
)
Disallow copy/assignment of SmtEngine.
author
Morgan Deters
<mdeters@cs.nyu.edu>
Mon, 9 Jun 2014 14:40:17 +0000
(10:40 -0400)
committer
Morgan Deters
<mdeters@cs.nyu.edu>
Mon, 9 Jun 2014 20:35:35 +0000
(16:35 -0400)
src/smt/smt_engine.h
patch
|
blob
|
history
diff --git
a/src/smt/smt_engine.h
b/src/smt/smt_engine.h
index 4b981f61416c33a6fa66988b904bc63fe92aadcf..72237ff1ca2db7b1b03bba9e9a9a99ea9f8688a8 100644
(file)
--- a/
src/smt/smt_engine.h
+++ b/
src/smt/smt_engine.h
@@
-361,6
+361,10
@@
class CVC4_PUBLIC SmtEngine {
*/
Model* getModel() throw(ModalException);
+ // disallow copy/assignment
+ SmtEngine(const SmtEngine&) CVC4_UNDEFINED;
+ SmtEngine& operator=(const SmtEngine&) CVC4_UNDEFINED;
+
public:
/**