summaryrefslogtreecommitdiff
path: root/src/theory/arith/arith_rewriter.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-02-26 22:19:47 +0000
committerMorgan Deters <mdeters@gmail.com>2011-02-26 22:19:47 +0000
commit3548c7e5f6afed4e07bf9a70f0403952c9262519 (patch)
tree18f5ae49fe1ecdc9f3254074df0990dc1930fbf2 /src/theory/arith/arith_rewriter.h
parentedf6aaa87da179948e6b233d16fa37d2aea58bbb (diff)
Commit to fix bug 241 (improper "using namespace std" in a header). This caused a number of latent errors in sources and headers to come up. Those are now fixed (by adding "using" or "std::" depending on the context). Took the opportunity to bring many rewriter sources in line with coding conventions.
Diffstat (limited to 'src/theory/arith/arith_rewriter.h')
-rw-r--r--src/theory/arith/arith_rewriter.h23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/theory/arith/arith_rewriter.h b/src/theory/arith/arith_rewriter.h
index e161bd8d6..3a8fc191a 100644
--- a/src/theory/arith/arith_rewriter.h
+++ b/src/theory/arith/arith_rewriter.h
@@ -2,10 +2,10 @@
/*! \file arith_rewriter.h
** \verbatim
** Original author: taking
- ** Major contributors: mdeters
+ ** Major contributors: mdeters, dejan
** Minor contributors (to current version): none
** This file is part of the CVC4 prototype.
- ** Copyright (c) 2009, 2010 The Analysis of Computer Systems Group (ACSys)
+ ** Copyright (c) 2009, 2010, 2011 The Analysis of Computer Systems Group (ACSys)
** Courant Institute of Mathematical Sciences
** New York University
** See the file COPYING in the top-level source directory for licensing
@@ -17,6 +17,11 @@
** \todo document this file
**/
+#include "cvc4_private.h"
+
+#ifndef __CVC4__THEORY__ARITH__ARITH_REWRITER_H
+#define __CVC4__THEORY__ARITH__ARITH_REWRITER_H
+
#include "theory/theory.h"
#include "theory/arith/arith_constants.h"
#include "theory/arith/arith_utilities.h"
@@ -24,9 +29,6 @@
#include "theory/rewriter.h"
-#ifndef __CVC4__THEORY__ARITH__REWRITER_H
-#define __CVC4__THEORY__ARITH__REWRITER_H
-
namespace CVC4 {
namespace theory {
namespace arith {
@@ -88,11 +90,10 @@ private:
return !isAtom(n);
}
-};
-
+};/* class ArithRewriter */
-}; /* namesapce rewrite */
-}; /* namespace theory */
-}; /* namespace CVC4 */
+}/* CVC4::theory::arith namespace */
+}/* CVC4::theory namespace */
+}/* CVC4 namespace */
-#endif /* __CVC4__THEORY__ARITH__REWRITER_H */
+#endif /* __CVC4__THEORY__ARITH__ARITH_REWRITER_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback