Merge remote-tracking branch 'origin/master' into segfaultfix
[cvc5.git] / src / theory / booleans / theory_bool_rewriter.h
1 /********************* */
2 /*! \file theory_bool_rewriter.h
3 ** \verbatim
4 ** Original author: Dejan Jovanovic
5 ** Major contributors: Morgan Deters
6 ** Minor contributors (to current version): Tim King
7 ** This file is part of the CVC4 project.
8 ** Copyright (c) 2009-2014 New York University and The University of Iowa
9 ** See the file COPYING in the top-level source directory for licensing
10 ** information.\endverbatim
11 **
12 ** \brief [[ Add one-line brief description here ]]
13 **
14 ** [[ Add lengthier description here ]]
15 ** \todo document this file
16 **/
17
18 #include "cvc4_private.h"
19
20 #ifndef __CVC4__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H
21 #define __CVC4__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H
22
23 #include "theory/rewriter.h"
24
25 namespace CVC4 {
26 namespace theory {
27 namespace booleans {
28
29 class TheoryBoolRewriter {
30
31 public:
32
33 static RewriteResponse preRewrite(TNode node);
34 static RewriteResponse postRewrite(TNode node);
35
36 static void init() {}
37 static void shutdown() {}
38
39 };/* class TheoryBoolRewriter */
40
41 }/* CVC4::theory::booleans namespace */
42 }/* CVC4::theory namespace */
43 }/* CVC4 namespace */
44
45 #endif /* __CVC4__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H */