GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/preprocessing/passes/theory_preprocess.h Lines: 1 1 100.0 %
Date: 2021-09-15 Branches: 0 0 0.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Mathias Preiner
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
 * The TheoryPreprocess preprocessing pass.
14
 *
15
 * Calls Theory::preprocess(...) on every assertion of the formula.
16
 */
17
18
#include "cvc5_private.h"
19
20
#ifndef CVC5__PREPROCESSING__PASSES__THEORY_PREPROCESS_H
21
#define CVC5__PREPROCESSING__PASSES__THEORY_PREPROCESS_H
22
23
#include "preprocessing/preprocessing_pass.h"
24
25
namespace cvc5 {
26
namespace preprocessing {
27
namespace passes {
28
29
19878
class TheoryPreprocess : public PreprocessingPass
30
{
31
 public:
32
  TheoryPreprocess(PreprocessingPassContext* preprocContext);
33
34
 protected:
35
  PreprocessingPassResult applyInternal(
36
      AssertionPipeline* assertionsToPreprocess) override;
37
};
38
39
}  // namespace passes
40
}  // namespace preprocessing
41
}  // namespace cvc5
42
43
#endif /* CVC5__PREPROCESSING__PASSES__THEORY_PREPROCESS_H */