summaryrefslogtreecommitdiff
path: root/Binaries/DafnyPrelude.bpl
diff options
context:
space:
mode:
Diffstat (limited to 'Binaries/DafnyPrelude.bpl')
-rw-r--r--Binaries/DafnyPrelude.bpl8
1 files changed, 0 insertions, 8 deletions
diff --git a/Binaries/DafnyPrelude.bpl b/Binaries/DafnyPrelude.bpl
index 8795d6a5..6c9faa29 100644
--- a/Binaries/DafnyPrelude.bpl
+++ b/Binaries/DafnyPrelude.bpl
@@ -179,14 +179,6 @@ axiom (forall<T> s, t: Seq T ::
Seq#Drop(Seq#Append(s, t), Seq#Length(s)) == t);
// ---------------------------------------------------------------
-// -- If then else -----------------------------------------------
-// ---------------------------------------------------------------
-
-function $ite<T>(bool, T, T): T;
-axiom (forall<T> g: bool, a,b: T :: { $ite(g,a,b) }
- (g ==> $ite(g,a,b) == a) && (!g ==> $ite(g,a,b) == b));
-
-// ---------------------------------------------------------------
// -- Boxing and unboxing ----------------------------------------
// ---------------------------------------------------------------