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

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds, Mathias Preiner, Andres Noetzli
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
 * Sort inference preprocessing pass.
14
 */
15
16
#ifndef CVC5__PREPROCESSING__PASSES__SORT_INFERENCE_PASS_H_
17
#define CVC5__PREPROCESSING__PASSES__SORT_INFERENCE_PASS_H_
18
19
#include "preprocessing/preprocessing_pass.h"
20
21
namespace cvc5 {
22
namespace preprocessing {
23
namespace passes {
24
25
/** SortInferencePass
26
 *
27
 * This preprocessing pass runs sort inference techniques on the input formula.
28
 * For details on these techniques, see theory/sort_inference.h.
29
 */
30
18918
class SortInferencePass : public PreprocessingPass
31
{
32
 public:
33
  SortInferencePass(PreprocessingPassContext* preprocContext);
34
35
 protected:
36
  PreprocessingPassResult applyInternal(
37
      AssertionPipeline* assertionsToPreprocess) override;
38
};
39
40
}  // namespace passes
41
}  // namespace preprocessing
42
}  // namespace cvc5
43
44
#endif /* CVC5__PREPROCESSING__PASSES__SORT_INFERENCE_PASS_H_ */