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

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andres Noetzli, 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
 * Remove ITEs from the assertions.
14
 */
15
16
#include "cvc5_private.h"
17
18
#ifndef CVC5__PREPROCESSING__PASSES__ITE_REMOVAL_H
19
#define CVC5__PREPROCESSING__PASSES__ITE_REMOVAL_H
20
21
#include "preprocessing/preprocessing_pass.h"
22
23
namespace cvc5 {
24
namespace preprocessing {
25
namespace passes {
26
27
19846
class IteRemoval : public PreprocessingPass
28
{
29
 public:
30
  IteRemoval(PreprocessingPassContext* preprocContext);
31
32
 protected:
33
  PreprocessingPassResult applyInternal(AssertionPipeline* assertions) override;
34
};
35
36
}  // namespace passes
37
}  // namespace preprocessing
38
}  // namespace cvc5
39
40
#endif  // CVC5__PREPROCESSING__PASSES__ITE_REMOVAL_H