summaryrefslogtreecommitdiff
path: root/Source/AIFramework/cce.cs
diff options
context:
space:
mode:
authorGravatar tabarbe <unknown>2010-08-27 00:29:15 +0000
committerGravatar tabarbe <unknown>2010-08-27 00:29:15 +0000
commit0faac5618039d3617b676c24e9465f712072adf3 (patch)
treeb68a85cabe8b8e655dfc517dfa8619f652995cfe /Source/AIFramework/cce.cs
parentc8d7f1ce39b5b08ed6b5a5791393b8f25169d568 (diff)
Boogie: Graph port 3/3: Committing changed references; also, adding back cce files, to ease between-project conflict. Will trim these back off after commit of Basetypes port in ~20 min.
Diffstat (limited to 'Source/AIFramework/cce.cs')
-rw-r--r--Source/AIFramework/cce.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/AIFramework/cce.cs b/Source/AIFramework/cce.cs
index 76deba32..ef594484 100644
--- a/Source/AIFramework/cce.cs
+++ b/Source/AIFramework/cce.cs
@@ -3,7 +3,7 @@ using SA=System.Attribute;
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Text;
-using Microsoft.Boogie;
+//using Microsoft.Boogie;
/// <summary>
/// A class containing static methods to extend the functionality of Code Contracts
@@ -131,9 +131,9 @@ public static class cce {
// return toRet;
//}
- internal static bool NonNullElements(Set set) {
- return set != null && Contract.ForAll(0,set.Count, i => set[i] != null);
- }
+ //internal static bool NonNullElements(Set set) {
+ // return set != null && Contract.ForAll(0,set.Count, i => set[i] != null);
+ //}
}
public class PeerAttribute : SA {