1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Andres Noetzli, Mathias Preiner, Morgan Deters |
4 |
|
* |
5 |
|
* This file is part of the cvc5 project. |
6 |
|
* |
7 |
|
* Copyright (c) 2009-2021 by the authors listed in the file AUTHORS |
8 |
|
* in the top-level source directory and their institutional affiliations. |
9 |
|
* All rights reserved. See the file COPYING in the top-level source |
10 |
|
* directory for licensing information. |
11 |
|
* **************************************************************************** |
12 |
|
* |
13 |
|
* [[ Add one-line brief description here ]] |
14 |
|
* |
15 |
|
* [[ Add lengthier description here ]] |
16 |
|
* \todo document this file |
17 |
|
*/ |
18 |
|
|
19 |
|
#include "cvc5_private.h" |
20 |
|
|
21 |
|
#ifndef CVC5__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H |
22 |
|
#define CVC5__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H |
23 |
|
|
24 |
|
#include "theory/theory_rewriter.h" |
25 |
|
|
26 |
|
namespace cvc5 { |
27 |
|
namespace theory { |
28 |
|
namespace booleans { |
29 |
|
|
30 |
19851 |
class TheoryBoolRewriter : public TheoryRewriter |
31 |
|
{ |
32 |
|
public: |
33 |
|
RewriteResponse preRewrite(TNode node) override; |
34 |
|
RewriteResponse postRewrite(TNode node) override; |
35 |
|
|
36 |
|
}; /* class TheoryBoolRewriter */ |
37 |
|
|
38 |
|
} // namespace booleans |
39 |
|
} // namespace theory |
40 |
|
} // namespace cvc5 |
41 |
|
|
42 |
|
#endif /* CVC5__THEORY__BOOLEANS__THEORY_BOOL_REWRITER_H */ |