summaryrefslogtreecommitdiff
path: root/src/printer/smt1/smt1_printer.h
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2018-05-02 20:07:36 -0700
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-02 22:07:36 -0500
commitbc40dbf0d808a3e30b721ef04b985b3e594a88bd (patch)
tree018c21da51e5aa0b63be0e48af54d48e876565b6 /src/printer/smt1/smt1_printer.h
parent5ed0a1b8dd73e339189df1556fa4bdbf95767245 (diff)
Remove (dummy) SMT1 printer (#1854)
Diffstat (limited to 'src/printer/smt1/smt1_printer.h')
-rw-r--r--src/printer/smt1/smt1_printer.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/printer/smt1/smt1_printer.h b/src/printer/smt1/smt1_printer.h
deleted file mode 100644
index 560393b81..000000000
--- a/src/printer/smt1/smt1_printer.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/********************* */
-/*! \file smt1_printer.h
- ** \verbatim
- ** Top contributors (to current version):
- ** Morgan Deters, Paul Meng
- ** This file is part of the CVC4 project.
- ** Copyright (c) 2009-2017 by the authors listed in the file AUTHORS
- ** in the top-level source directory) and their institutional affiliations.
- ** All rights reserved. See the file COPYING in the top-level source
- ** directory for licensing information.\endverbatim
- **
- ** \brief The pretty-printer interface for the SMT output language
- **
- ** The pretty-printer interface for the SMT output language.
- **/
-
-#include "cvc4_private.h"
-
-#ifndef __CVC4__PRINTER__SMT1_PRINTER_H
-#define __CVC4__PRINTER__SMT1_PRINTER_H
-
-#include <iostream>
-
-#include "printer/printer.h"
-
-namespace CVC4 {
-namespace printer {
-namespace smt1 {
-
-class Smt1Printer : public CVC4::Printer {
- public:
- using CVC4::Printer::toStream;
- void toStream(std::ostream& out,
- TNode n,
- int toDepth,
- bool types,
- size_t dag) const override;
- void toStream(std::ostream& out,
- const Command* c,
- int toDepth,
- bool types,
- size_t dag) const override;
- void toStream(std::ostream& out, const CommandStatus* s) const override;
- void toStream(std::ostream& out, const Model& m) const override;
-
- private:
- void toStream(std::ostream& out,
- const Model& m,
- const Command* c) const override;
- void toStream(std::ostream& out, const SExpr& sexpr) const;
-};/* class Smt1Printer */
-
-}/* CVC4::printer::smt1 namespace */
-}/* CVC4::printer namespace */
-}/* CVC4 namespace */
-
-#endif /* __CVC4__PRINTER__SMT1_PRINTER_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback