summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/sep_skolem_emp.h
diff options
context:
space:
mode:
authoryoni206 <yoni206@users.noreply.github.com>2018-07-17 14:20:46 -0700
committerGitHub <noreply@github.com>2018-07-17 14:20:46 -0700
commit75bbe18a3f8f7b814a7716574fd3619bf69ba85b (patch)
tree9ca8b3d55aa6e7002fba5185004878b6adba3dae /src/preprocessing/passes/sep_skolem_emp.h
parent06440f4ed1f4de8612740dc21b63ac6967404f31 (diff)
Refactor sep-pre-skolem-emp preprocessing pass
Diffstat (limited to 'src/preprocessing/passes/sep_skolem_emp.h')
-rw-r--r--src/preprocessing/passes/sep_skolem_emp.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/preprocessing/passes/sep_skolem_emp.h b/src/preprocessing/passes/sep_skolem_emp.h
new file mode 100644
index 000000000..4a3dba6b8
--- /dev/null
+++ b/src/preprocessing/passes/sep_skolem_emp.h
@@ -0,0 +1,42 @@
+/********************* */
+/*! \file sep_skolem_emp.h
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Andrew Reynolds, Mathias Preiner, Yoni Zohar
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2018 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief The sep-pre-skolem-emp eprocessing pass
+ **
+ **/
+
+#include "cvc4_private.h"
+
+#ifndef __CVC4__PREPROCESSING__PASSES__SEP_SKOLEM_EMP_H
+#define __CVC4__PREPROCESSING__PASSES__SEP_SKOLEM_EMP_H
+
+#include "preprocessing/preprocessing_pass.h"
+#include "preprocessing/preprocessing_pass_context.h"
+
+namespace CVC4 {
+namespace preprocessing {
+namespace passes {
+
+class SepSkolemEmp : public PreprocessingPass
+{
+ public:
+ SepSkolemEmp(PreprocessingPassContext* preprocContext);
+
+ protected:
+ PreprocessingPassResult applyInternal(
+ AssertionPipeline* assertionsToPreprocess) override;
+};
+
+} // namespace passes
+} // namespace preprocessing
+} // namespace CVC4
+
+#endif /* __CVC4__PREPROCESSING__PASSES__SEP_SKOLEM_EMP_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback