summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryoni206 <yoni206@users.noreply.github.com>2018-05-09 12:05:30 -0700
committerAina Niemetz <aina.niemetz@gmail.com>2018-05-09 12:05:30 -0700
commit5adbae1d6aea06f60984c0a7b965f4ee24e5ea6c (patch)
tree9e9b8dd008c297b320e438e03e6827288f17a3e1
parent609a4c11eed577f127644006465d7e112139532d (diff)
Reorder class members in bv-to-bool and bool-to-bv preprocessing passes. (#1893)
-rw-r--r--src/preprocessing/passes/bool_to_bv.h2
-rw-r--r--src/preprocessing/passes/bv_to_bool.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/preprocessing/passes/bool_to_bv.h b/src/preprocessing/passes/bool_to_bv.h
index e85693d1c..8a71413a2 100644
--- a/src/preprocessing/passes/bool_to_bv.h
+++ b/src/preprocessing/passes/bool_to_bv.h
@@ -52,10 +52,10 @@ class BoolToBV : public PreprocessingPass
Node getLowerCache(TNode term) const;
bool hasLowerCache(TNode term) const;
Node lowerNode(TNode current, bool topLevel = false);
- Statistics d_statistics;
NodeNodeMap d_lowerCache;
Node d_one;
Node d_zero;
+ Statistics d_statistics;
}; // class
} // namespace passes
} // namespace preprocessing
diff --git a/src/preprocessing/passes/bv_to_bool.h b/src/preprocessing/passes/bv_to_bool.h
index f772087e8..c04fd8699 100644
--- a/src/preprocessing/passes/bv_to_bool.h
+++ b/src/preprocessing/passes/bv_to_bool.h
@@ -65,11 +65,11 @@ class BVToBool : public PreprocessingPass
void liftBvToBool(const std::vector<Node>& assertions,
std::vector<Node>& new_assertions);
- Statistics d_statistics;
NodeNodeMap d_liftCache;
NodeNodeMap d_boolCache;
Node d_one;
Node d_zero;
+ Statistics d_statistics;
};
} // namespace passes
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback