diff options
author | mikebarnett <unknown> | 2011-03-07 05:15:14 +0000 |
---|---|---|
committer | mikebarnett <unknown> | 2011-03-07 05:15:14 +0000 |
commit | 241de8264a32285d371a53d8d91a219625d76922 (patch) | |
tree | bde7c8c1dead587fc23a131810cf32779d7e9c8f /Source/Provers/Simplify | |
parent | 0cd15d2b78a68bcdc566b31d53287f63625560e7 (diff) |
Fix contracts so runtime checking can be turned on.
Diffstat (limited to 'Source/Provers/Simplify')
-rw-r--r-- | Source/Provers/Simplify/ProverInterface.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Provers/Simplify/ProverInterface.cs b/Source/Provers/Simplify/ProverInterface.cs index 50eefc49..7f7c4686 100644 --- a/Source/Provers/Simplify/ProverInterface.cs +++ b/Source/Provers/Simplify/ProverInterface.cs @@ -66,7 +66,7 @@ namespace Microsoft.Boogie.Simplify { [StrictReadonly]
protected readonly ProverOptions options;
[StrictReadonly]
- private readonly List<string>/*?*/ commonPrefix;
+ private readonly List<string> commonPrefix;
[ContractInvariantMethod]
void ObjectInvariant() {
@@ -75,7 +75,6 @@ namespace Microsoft.Boogie.Simplify { Contract.Invariant(openActivityString != null);
Contract.Invariant(closeActivityString != null);
Contract.Invariant(options != null);
- Contract.Invariant(cce.NonNullElements(commonPrefix));
}
|