summaryrefslogtreecommitdiff
path: root/src/parser
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-11-05 22:28:18 -0600
committerGitHub <noreply@github.com>2020-11-05 22:28:18 -0600
commitaf18cd275f340d1896c3b635dbeecbea2e521db1 (patch)
tree438137ddb999a853b543baa70e8009da212c1e05 /src/parser
parentac8b2593bed81125cb1a494e4b8311e517d0e3d9 (diff)
Simplify printing with respect to expression types (#5394)
This removes infrastructure for stream property related to printing type annotations on all variables. This is towards refactoring the printers.
Diffstat (limited to 'src/parser')
-rw-r--r--src/parser/parser.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parser/parser.cpp b/src/parser/parser.cpp
index 6feb298c2..af2faa505 100644
--- a/src/parser/parser.cpp
+++ b/src/parser/parser.cpp
@@ -28,7 +28,6 @@
#include "api/cvc4cpp.h"
#include "base/output.h"
#include "expr/expr.h"
-#include "expr/expr_iomanip.h"
#include "expr/kind.h"
#include "expr/type.h"
#include "options/options.h"
@@ -435,7 +434,6 @@ std::vector<api::Sort> Parser::bindMutualDatatypeTypes(
for (size_t j = 0, ncons = dt.getNumConstructors(); j < ncons; j++)
{
const api::DatatypeConstructor& ctor = dt[j];
- expr::ExprPrintTypes::Scope pts(Debug("parser-idt"), true);
api::Term constructor = ctor.getConstructorTerm();
Debug("parser-idt") << "+ define " << constructor << std::endl;
string constructorName = ctor.getName();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback