diff options
Diffstat (limited to 'Source/AIFramework')
-rw-r--r-- | Source/AIFramework/AIFramework.csproj | 4 | ||||
-rw-r--r-- | Source/AIFramework/cce.cs | 8 |
2 files changed, 7 insertions, 5 deletions
diff --git a/Source/AIFramework/AIFramework.csproj b/Source/AIFramework/AIFramework.csproj index bddd07f2..224be513 100644 --- a/Source/AIFramework/AIFramework.csproj +++ b/Source/AIFramework/AIFramework.csproj @@ -70,7 +70,9 @@ <Reference Include="System" />
</ItemGroup>
<ItemGroup>
- <Compile Include="cce.cs" />
+ <Compile Include="cce.cs">
+ <SubType>Code</SubType>
+ </Compile>
<Compile Include="CommonFunctionSymbols.cs" />
<Compile Include="Expr.cs" />
<Compile Include="Functional.cs" />
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 {
|