summaryrefslogtreecommitdiff
path: root/src/smt/command.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2017-09-24 23:20:12 -0700
committerGitHub <noreply@github.com>2017-09-24 23:20:12 -0700
commite665b892db312e03ce9674b2a45aaca1b2dfd6ae (patch)
treee50945bbb4b3a9d13ab55f8867dd503d1863df68 /src/smt/command.h
parent69d511da599dc18fbf3d42571e0f23b8e1d39032 (diff)
CID 1362907: Initializing d_smtEngine to nullptr. (#1134)
Diffstat (limited to 'src/smt/command.h')
-rw-r--r--src/smt/command.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/smt/command.h b/src/smt/command.h
index 2e0f4090e..2091028eb 100644
--- a/src/smt/command.h
+++ b/src/smt/command.h
@@ -648,17 +648,19 @@ public:
};/* class GetInstantiationsCommand */
class CVC4_PUBLIC GetSynthSolutionCommand : public Command {
-protected:
- SmtEngine* d_smtEngine;
-public:
+ public:
GetSynthSolutionCommand() throw();
~GetSynthSolutionCommand() throw() {}
void invoke(SmtEngine* smtEngine);
void printResult(std::ostream& out, uint32_t verbosity = 2) const;
- Command* exportTo(ExprManager* exprManager, ExprManagerMapCollection& variableMap);
+ Command* exportTo(ExprManager* exprManager,
+ ExprManagerMapCollection& variableMap);
Command* clone() const;
std::string getCommandName() const throw();
-};/* class GetSynthSolutionCommand */
+
+ protected:
+ SmtEngine* d_smtEngine;
+}; /* class GetSynthSolutionCommand */
class CVC4_PUBLIC GetQuantifierEliminationCommand : public Command {
protected:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback