C++: This predicate is no longer used.

This commit is contained in:
Mathias Vorreiter Pedersen
2023-07-21 16:52:36 +01:00
parent d350c0d5c8
commit 742f080a55

View File

@@ -35,14 +35,5 @@ bindingset[i]
pragma[inline_late]
predicate bounded1(Instruction i, Instruction b, int delta) { boundedImpl(i, b, delta) }
/**
* Holds if `i <= b + delta`.
*
* This predicate enforces a join-order that ensures that `b` has already been bound.
*/
bindingset[b]
pragma[inline_late]
predicate bounded2(Instruction i, Instruction b, int delta) { boundedImpl(i, b, delta) }
/** Holds if `i <= b + delta`. */
predicate bounded = boundedImpl/3;