summaryrefslogtreecommitdiff
path: root/src/printer/ast/ast_printer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/printer/ast/ast_printer.cpp')
-rw-r--r--src/printer/ast/ast_printer.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/printer/ast/ast_printer.cpp b/src/printer/ast/ast_printer.cpp
index 76549d01d..8bf3bd24e 100644
--- a/src/printer/ast/ast_printer.cpp
+++ b/src/printer/ast/ast_printer.cpp
@@ -296,18 +296,6 @@ void AstPrinter::toStreamCmdDefineType(std::ostream& out,
out << "]," << t << ')' << std::endl;
}
-void AstPrinter::toStreamCmdDefineNamedFunction(
- std::ostream& out,
- const std::string& id,
- const std::vector<Node>& formals,
- TypeNode range,
- Node formula) const
-{
- out << "DefineNamedFunction( ";
- toStreamCmdDefineFunction(out, id, formals, range, formula);
- out << " )" << std::endl;
-}
-
void AstPrinter::toStreamCmdSimplify(std::ostream& out, Node n) const
{
out << "Simplify( << " << n << " >> )" << std::endl;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback