summaryrefslogtreecommitdiff
path: root/src/main/command_executor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/command_executor.h')
-rw-r--r--src/main/command_executor.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/command_executor.h b/src/main/command_executor.h
index a2dc4a4e9..f066a27b6 100644
--- a/src/main/command_executor.h
+++ b/src/main/command_executor.h
@@ -24,7 +24,7 @@
#include "smt/smt_engine.h"
#include "util/statistics_registry.h"
-namespace CVC5 {
+namespace cvc5 {
class Command;
@@ -65,9 +65,9 @@ class CommandExecutor
* sequence. Eventually uses doCommandSingleton (which can be
* overridden by a derived class).
*/
- bool doCommand(CVC5::Command* cmd);
+ bool doCommand(cvc5::Command* cmd);
- bool doCommand(std::unique_ptr<CVC5::Command>& cmd)
+ bool doCommand(std::unique_ptr<cvc5::Command>& cmd)
{
return doCommand(cmd.get());
}
@@ -101,7 +101,7 @@ class CommandExecutor
protected:
/** Executes treating cmd as a singleton */
- virtual bool doCommandSingleton(CVC5::Command* cmd);
+ virtual bool doCommandSingleton(cvc5::Command* cmd);
private:
CommandExecutor();
@@ -114,6 +114,6 @@ bool solverInvoke(api::Solver* solver,
std::ostream* out);
} // namespace main
-} // namespace CVC5
+} // namespace cvc5
#endif /* CVC4__MAIN__COMMAND_EXECUTOR_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback