GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/preprocessing/passes/strings_eager_pp.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
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 strings eager preprocess utility.
14
 */
15
16
#include "cvc5_private.h"
17
18
#ifndef CVC5__PREPROCESSING__PASSES__STRINGS_EAGER_PP_H
19
#define CVC5__PREPROCESSING__PASSES__STRINGS_EAGER_PP_H
20
21
#include "preprocessing/preprocessing_pass.h"
22
23
namespace cvc5 {
24
namespace preprocessing {
25
namespace passes {
26
27
/**
28
 * Eliminate all extended string functions in the input problem using
29
 * reductions to bounded string quantifiers.
30
 */
31
18918
class StringsEagerPp : public PreprocessingPass
32
{
33
 public:
34
  StringsEagerPp(PreprocessingPassContext* preprocContext);
35
36
 protected:
37
  PreprocessingPassResult applyInternal(
38
      AssertionPipeline* assertionsToPreprocess) override;
39
};
40
41
}  // namespace passes
42
}  // namespace preprocessing
43
}  // namespace cvc5
44
45
#endif /* CVC5__PREPROCESSING__PASSES__STRINGS_EAGER_PP_H */