summaryrefslogtreecommitdiff
path: root/src/parser/smt2
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser/smt2')
-rw-r--r--src/parser/smt2/smt2.cpp13
-rw-r--r--src/parser/smt2/smt2.h2
-rw-r--r--src/parser/smt2/smt2_input.h10
3 files changed, 0 insertions, 25 deletions
diff --git a/src/parser/smt2/smt2.cpp b/src/parser/smt2/smt2.cpp
index 308f45ed0..e41e0e26a 100644
--- a/src/parser/smt2/smt2.cpp
+++ b/src/parser/smt2/smt2.cpp
@@ -44,12 +44,6 @@ void Smt2::addArithmeticOperators() {
addOperator(kind::GEQ);
}
-/**
- * Add theory symbols to the parser state.
- *
- * @param parser the CVC4 Parser object
- * @param theory the theory to open (e.g., Core, Ints)
- */
void Smt2::addTheory(Theory theory) {
switch(theory) {
case THEORY_CORE:
@@ -97,13 +91,6 @@ bool Smt2::logicIsSet() {
return d_logicSet;
}
-/**
- * Sets the logic for the current benchmark. Declares any logic and
- * theory symbols.
- *
- * @param parser the CVC4 Parser object
- * @param name the name of the logic (e.g., QF_UF, AUFLIA)
- */
void Smt2::setLogic(const std::string& name) {
d_logicSet = true;
d_logic = Smt::toLogic(name);
diff --git a/src/parser/smt2/smt2.h b/src/parser/smt2/smt2.h
index 6398fa735..ef5f5e729 100644
--- a/src/parser/smt2/smt2.h
+++ b/src/parser/smt2/smt2.h
@@ -54,7 +54,6 @@ public:
/**
* Add theory symbols to the parser state.
*
- * @param parser the CVC4 Parser object
* @param theory the theory to open (e.g., Core, Ints)
*/
void addTheory(Theory theory);
@@ -65,7 +64,6 @@ public:
* Sets the logic for the current benchmark. Declares any logic and
* theory symbols.
*
- * @param parser the CVC4 Parser object
* @param name the name of the logic (e.g., QF_UF, AUFLIA)
*/
void setLogic(const std::string& name);
diff --git a/src/parser/smt2/smt2_input.h b/src/parser/smt2/smt2_input.h
index 02a480971..836472107 100644
--- a/src/parser/smt2/smt2_input.h
+++ b/src/parser/smt2/smt2_input.h
@@ -61,16 +61,6 @@ public:
*/
Smt2Input(AntlrInputStream& inputStream);
- /**
- * Create a string input.
- *
- * @param exprManager the manager to use when building expressions
- * from the input
- * @param input the string to read
- * @param name the "filename" to use when reporting errors
- */
-// Smt2Input(ExprManager* exprManager, const std::string& input, const std::string& name);
-
/** Destructor. Frees the lexer and the parser. */
virtual ~Smt2Input();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback