1 |
|
/****************************************************************************** |
2 |
|
* Top contributors (to current version): |
3 |
|
* Yoni Zohar, 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 sep-pre-skolem-emp eprocessing pass. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "cvc5_private.h" |
17 |
|
|
18 |
|
#ifndef CVC5__PREPROCESSING__PASSES__SEP_SKOLEM_EMP_H |
19 |
|
#define CVC5__PREPROCESSING__PASSES__SEP_SKOLEM_EMP_H |
20 |
|
|
21 |
|
#include "preprocessing/preprocessing_pass.h" |
22 |
|
|
23 |
|
namespace cvc5 { |
24 |
|
namespace preprocessing { |
25 |
|
namespace passes { |
26 |
|
|
27 |
19824 |
class SepSkolemEmp : public PreprocessingPass |
28 |
|
{ |
29 |
|
public: |
30 |
|
SepSkolemEmp(PreprocessingPassContext* preprocContext); |
31 |
|
|
32 |
|
protected: |
33 |
|
PreprocessingPassResult applyInternal( |
34 |
|
AssertionPipeline* assertionsToPreprocess) override; |
35 |
|
}; |
36 |
|
|
37 |
|
} // namespace passes |
38 |
|
} // namespace preprocessing |
39 |
|
} // namespace cvc5 |
40 |
|
|
41 |
|
#endif /* CVC5__PREPROCESSING__PASSES__SEP_SKOLEM_EMP_H */ |