summaryrefslogtreecommitdiff
path: root/src/preprocessing/passes/skeleton_preprocessing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/preprocessing/passes/skeleton_preprocessing.cpp')
-rw-r--r--src/preprocessing/passes/skeleton_preprocessing.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/preprocessing/passes/skeleton_preprocessing.cpp b/src/preprocessing/passes/skeleton_preprocessing.cpp
index 8a134ed68..f185e3490 100644
--- a/src/preprocessing/passes/skeleton_preprocessing.cpp
+++ b/src/preprocessing/passes/skeleton_preprocessing.cpp
@@ -1,5 +1,5 @@
/********************* */
-/*! \file non_clausal_simp.cpp
+/*! \file skeleton_preprocessing.cpp
** \verbatim
** Top contributors (to current version):
** Aina Niemetz, Haoze Wu
@@ -9,9 +9,9 @@
** All rights reserved. See the file COPYING in the top-level source
** directory for licensing information.\endverbatim
**
- ** \brief Non-clausal simplification preprocessing pass.
+ ** \brief Boolean skeleton preprocessing pass.
**
- ** Run the nonclausal solver and try to solve all assigned theory literals.
+ ** Run cryptominisat and try to solve all assigned theory literals.
**/
#include "preprocessing/passes/skeleton_preprocessing.h"
@@ -86,7 +86,7 @@ PreprocessingPassResult SkeletonPreprocessing::applyInternal(
- SatValue result = d_satSolver->simp();
+ SatValue result = d_satSolver->solve();
if (result==SAT_VALUE_FALSE){
// If in conflict, just return false
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback