summaryrefslogtreecommitdiff
path: root/src/util/ite_removal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/ite_removal.h')
-rw-r--r--src/util/ite_removal.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/util/ite_removal.h b/src/util/ite_removal.h
index 248ce4efa..7327d4a64 100644
--- a/src/util/ite_removal.h
+++ b/src/util/ite_removal.h
@@ -33,16 +33,20 @@ class RemoveITE {
public:
/**
- * Removes the ITE nodes by introducing skolem variables. All additional assertions are pushed into assertions.
- * iteSkolemMap contains a map from introduced skolem variables to the index in assertions containing the new
- * Boolean ite created in conjunction with that skolem variable.
+ * Removes the ITE nodes by introducing skolem variables. All
+ * additional assertions are pushed into assertions. iteSkolemMap
+ * contains a map from introduced skolem variables to the index in
+ * assertions containing the new Boolean ite created in conjunction
+ * with that skolem variable.
*/
static void run(std::vector<Node>& assertions, IteSkolemMap& iteSkolemMap);
/**
- * Removes the ITE from the node by introducing skolem variables. All additional assertions are pushed into assertions.
- * iteSkolemMap contains a map from introduced skolem variables to the index in assertions containing the new
- * Boolean ite created in conjunction with that skolem variable.
+ * Removes the ITE from the node by introducing skolem
+ * variables. All additional assertions are pushed into
+ * assertions. iteSkolemMap contains a map from introduced skolem
+ * variables to the index in assertions containing the new Boolean
+ * ite created in conjunction with that skolem variable.
*/
static Node run(TNode node, std::vector<Node>& additionalAssertions,
IteSkolemMap& iteSkolemMap);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback