summaryrefslogtreecommitdiff
path: root/BCT/BytecodeTranslator/Program.cs
diff options
context:
space:
mode:
authorGravatar mikebarnett <unknown>2011-01-22 00:29:37 +0000
committerGravatar mikebarnett <unknown>2011-01-22 00:29:37 +0000
commit6b20aec17ac8543e94b2a59dc6cef03988f8c4be (patch)
treef3c175f231ac66acc435f60096d3531c28dc1386 /BCT/BytecodeTranslator/Program.cs
parentc5e0eb26a14adaab86c8adba7da828d7680a1bc4 (diff)
Make the general heap representation the default.
Make the pre- and post-conditions *not* be free contracts.
Diffstat (limited to 'BCT/BytecodeTranslator/Program.cs')
-rw-r--r--BCT/BytecodeTranslator/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/BCT/BytecodeTranslator/Program.cs b/BCT/BytecodeTranslator/Program.cs
index 99528902..0e26be2a 100644
--- a/BCT/BytecodeTranslator/Program.cs
+++ b/BCT/BytecodeTranslator/Program.cs
@@ -27,7 +27,7 @@ namespace BytecodeTranslator {
public enum HeapRepresentation { splitFields, twoDInt, twoDBox, general }
[OptionDescription("Heap representation to use", ShortForm = "heap")]
- public HeapRepresentation heapRepresentation = HeapRepresentation.twoDInt;
+ public HeapRepresentation heapRepresentation = HeapRepresentation.general;
}