Use Nodes for SmtEngine assertions (#4752)
[cvc5.git] / src / preprocessing / passes / static_learning.h
1 /********************* */
2 /*! \file static_learning.h
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Yoni Zohar, Mathias Preiner
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2020 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 static learning preprocessing pass
13 **
14 **/
15
16 #include "cvc4_private.h"
17
18 #ifndef CVC4__PREPROCESSING__PASSES__STATIC_LEARNING_H
19 #define CVC4__PREPROCESSING__PASSES__STATIC_LEARNING_H
20
21 #include "preprocessing/preprocessing_pass.h"
22 #include "preprocessing/preprocessing_pass_context.h"
23
24 namespace CVC4 {
25 namespace preprocessing {
26 namespace passes {
27
28 class StaticLearning : public PreprocessingPass
29 {
30 public:
31 StaticLearning(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__STATIC_LEARNING_H */