summaryrefslogtreecommitdiff
path: root/Binaries
diff options
context:
space:
mode:
authorGravatar leino <unknown>2015-03-09 15:38:38 -0700
committerGravatar leino <unknown>2015-03-09 15:38:38 -0700
commitfe11be81341018bf3f3dc73d889f99a6a4b56cdd (patch)
tree43fa7492f8ee766eccc8e7dc08535123661a9ac0 /Binaries
parentefeb1c5ddde488b4923d87339b8ebbf75d910e16 (diff)
Removed some old and unused functions
Diffstat (limited to 'Binaries')
-rw-r--r--Binaries/DafnyPrelude.bpl16
1 files changed, 0 insertions, 16 deletions
diff --git a/Binaries/DafnyPrelude.bpl b/Binaries/DafnyPrelude.bpl
index f4feacdc..0e91bf95 100644
--- a/Binaries/DafnyPrelude.bpl
+++ b/Binaries/DafnyPrelude.bpl
@@ -150,22 +150,6 @@ axiom (forall<T> v : T, t : Ty, h : Heap ::
{ $IsAllocBox($Box(v), t, h) }
( $IsAllocBox($Box(v), t, h) <==> $IsAlloc(v,t,h) ));
-// The following functions and axioms are used to obtain a $Box($Unbox(_)) wrapper around
-// certain expressions. Note that it assumes any booleans (or, indeed, values of any type) contained
-// in the (multi)set are canonical (which is the case for any (multi)set that occurs in an execution of
-// a Dafny program).
-// The role of the parameter 'dummy' in the following is (an unfortunately clumsy construction
-// whose only purpose is) simply to tell Boogie how to instantiate the type parameter 'T'.
-
-/*
-function $IsGoodSet_Extended<T>(s: Set Box, dummy: T): bool;
-axiom (forall<T> ss: Set Box, dummy: T, bx: Box :: { $IsGoodSet_Extended(ss, dummy), ss[bx] }
- $IsGoodSet_Extended(ss, dummy) ==> ss[bx] ==> bx == $Box($Unbox(bx): T));
-function $IsGoodMultiSet_Extended<T>(ms: MultiSet Box, dummy: T): bool;
-axiom (forall<T> ms: MultiSet Box, dummy: T, bx: Box :: { $IsGoodMultiSet_Extended(ms, dummy), ms[bx] }
- $IsGoodMultiSet_Extended(ms, dummy) ==> 0 < ms[bx] ==> bx == $Box($Unbox(bx): T));
- */
-
// ---------------------------------------------------------------
// -- Is and IsAlloc ---------------------------------------------
// ---------------------------------------------------------------