Reverting a previous change to the options_handlers.h. Using inline defintions again...
authorTim King <taking@google.com>
Fri, 4 Dec 2015 04:46:48 +0000 (23:46 -0500)
committerTim King <taking@google.com>
Fri, 4 Dec 2015 04:46:48 +0000 (23:46 -0500)
src/expr/Makefile.am
src/expr/options_handlers.cpp [deleted file]
src/expr/options_handlers.h

index 1dbb24e09ee4a2ed87f2ad90268271eb5a162412..c5a032abcc6e51c663f13a2ee152e438dfd001a7 100644 (file)
@@ -37,9 +37,7 @@ libexpr_la_SOURCES = \
        pickler.cpp \
        node_self_iterator.h \
        expr_stream.h \
-       kind_map.h \
-       options_handlers.h \
-       options_handlers.cpp
+       kind_map.h
 
 nodist_libexpr_la_SOURCES = \
        kind.h \
diff --git a/src/expr/options_handlers.cpp b/src/expr/options_handlers.cpp
deleted file mode 100644 (file)
index 05fb8c2..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-/*********************                                                        */
-/*! \file options_handlers.cpp
- ** \verbatim
- ** Original author: Morgan Deters
- ** Major contributors: none
- ** Minor contributors (to current version): none
- ** This file is part of the CVC4 project.
- ** Copyright (c) 2009-2014  New York University and The University of Iowa
- ** See the file COPYING in the top-level source directory for licensing
- ** information.\endverbatim
- **
- ** \brief Custom handlers and predicates for expression package options
- **
- ** Custom handlers and predicates for expression package options.
- **/
-
-#include "cvc4_private.h"
-
-#include "expr/options_handlers.h"
-#include "util/dump.h"
-#include "util/output.h"
-
-namespace CVC4 {
-namespace expr {
-
-void setDefaultExprDepth(std::string option, int depth, SmtEngine* smt) {
-  if(depth < -1) {
-    throw OptionException("--default-expr-depth requires a positive argument, or -1.");
-  }
-
-  Debug.getStream() << Expr::setdepth(depth);
-  Trace.getStream() << Expr::setdepth(depth);
-  Notice.getStream() << Expr::setdepth(depth);
-  Chat.getStream() << Expr::setdepth(depth);
-  Message.getStream() << Expr::setdepth(depth);
-  Warning.getStream() << Expr::setdepth(depth);
-  // intentionally exclude Dump stream from this list
-}
-
-void setDefaultDagThresh(std::string option, int dag, SmtEngine* smt) {
-  if(dag < 0) {
-    throw OptionException("--default-dag-thresh requires a nonnegative argument.");
-  }
-
-  Debug.getStream() << Expr::dag(dag);
-  Trace.getStream() << Expr::dag(dag);
-  Notice.getStream() << Expr::dag(dag);
-  Chat.getStream() << Expr::dag(dag);
-  Message.getStream() << Expr::dag(dag);
-  Warning.getStream() << Expr::dag(dag);
-  Dump.getStream() << Expr::dag(dag);
-}
-
-void setPrintExprTypes(std::string option, SmtEngine* smt) {
-  Debug.getStream() << Expr::printtypes(true);
-  Trace.getStream() << Expr::printtypes(true);
-  Notice.getStream() << Expr::printtypes(true);
-  Chat.getStream() << Expr::printtypes(true);
-  Message.getStream() << Expr::printtypes(true);
-  Warning.getStream() << Expr::printtypes(true);
-  // intentionally exclude Dump stream from this list
-}
-
-}/* CVC4::expr namespace */
-}/* CVC4 namespace */
-
index 32735efa3e444cd9ec33ffe80a0ed7eaf2e05122..e2a92ade7d6ee3bc04b7be62d3433850c8482dd9 100644 (file)
 #ifndef __CVC4__EXPR__OPTIONS_HANDLERS_H
 #define __CVC4__EXPR__OPTIONS_HANDLERS_H
 
-#include <string>
+#include "util/output.h"
+#include "util/dump.h"
 
 namespace CVC4 {
-class SmtEngine;
-
 namespace expr {
 
+inline void setDefaultExprDepth(std::string option, int depth, SmtEngine* smt) {
+  if(depth < -1) {
+    throw OptionException("--default-expr-depth requires a positive argument, or -1.");
+  }
+
+  Debug.getStream() << Expr::setdepth(depth);
+  Trace.getStream() << Expr::setdepth(depth);
+  Notice.getStream() << Expr::setdepth(depth);
+  Chat.getStream() << Expr::setdepth(depth);
+  Message.getStream() << Expr::setdepth(depth);
+  Warning.getStream() << Expr::setdepth(depth);
+  // intentionally exclude Dump stream from this list
+}
 
-void setDefaultExprDepth(std::string option, int depth, SmtEngine* smt);
+inline void setDefaultDagThresh(std::string option, int dag, SmtEngine* smt) {
+  if(dag < 0) {
+    throw OptionException("--default-dag-thresh requires a nonnegative argument.");
+  }
 
-void setDefaultDagThresh(std::string option, int dag, SmtEngine* smt);
+  Debug.getStream() << Expr::dag(dag);
+  Trace.getStream() << Expr::dag(dag);
+  Notice.getStream() << Expr::dag(dag);
+  Chat.getStream() << Expr::dag(dag);
+  Message.getStream() << Expr::dag(dag);
+  Warning.getStream() << Expr::dag(dag);
+  Dump.getStream() << Expr::dag(dag);
+}
 
-void setPrintExprTypes(std::string option, SmtEngine* smt);
+inline void setPrintExprTypes(std::string option, SmtEngine* smt) {
+  Debug.getStream() << Expr::printtypes(true);
+  Trace.getStream() << Expr::printtypes(true);
+  Notice.getStream() << Expr::printtypes(true);
+  Chat.getStream() << Expr::printtypes(true);
+  Message.getStream() << Expr::printtypes(true);
+  Warning.getStream() << Expr::printtypes(true);
+  // intentionally exclude Dump stream from this list
+}
 
 }/* CVC4::expr namespace */
 }/* CVC4 namespace */