Remove logic request (#6089)
[cvc5.git] / src / preprocessing / passes / rewrite.h
1 /********************* */
2 /*! \file rewrite.h
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Caleb Donovick, Mathias Preiner
6 ** This file is part of the CVC4 project.
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.\endverbatim
11 **
12 ** \brief The rewrite preprocessing pass
13 **
14 ** Calls the rewriter on every assertion
15 **/
16
17 #include "cvc4_private.h"
18
19 #ifndef CVC4__PREPROCESSING__PASSES__REWRITE_H
20 #define CVC4__PREPROCESSING__PASSES__REWRITE_H
21
22 #include "preprocessing/preprocessing_pass.h"
23
24 namespace CVC4 {
25 namespace preprocessing {
26 namespace passes {
27
28 class Rewrite : public PreprocessingPass
29 {
30 public:
31 Rewrite(PreprocessingPassContext* preprocContext);
32
33 protected:
34 PreprocessingPassResult applyInternal(
35 AssertionPipeline* assertionsToPreprocess) override;
36 };
37
38 } // namespace passes
39 } // namespace preprocessing
40 } // namespace CVC4
41
42 #endif /* CVC4__PREPROCESSING__PASSES__REWRITE_H */
43