summaryrefslogtreecommitdiff
path: root/Source/Provers/Z3/TypeDeclCollector.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Provers/Z3/TypeDeclCollector.cs')
-rw-r--r--Source/Provers/Z3/TypeDeclCollector.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Provers/Z3/TypeDeclCollector.cs b/Source/Provers/Z3/TypeDeclCollector.cs
index cd01e325..303a0066 100644
--- a/Source/Provers/Z3/TypeDeclCollector.cs
+++ b/Source/Provers/Z3/TypeDeclCollector.cs
@@ -29,12 +29,12 @@ void ObjectInvariant()
Contract.Invariant(Namer!=null);
Contract.Invariant(AllDecls != null);
Contract.Invariant(IncDecls != null);
- Contract.Invariant(cce.NonNullElements(KnownFunctions));
- Contract.Invariant(cce.NonNullElements(KnownVariables));
- Contract.Invariant(cce.NonNullElements(KnownTypes));
- Contract.Invariant(cce.NonNullElements(KnownBvOps));
- Contract.Invariant(cce.NonNullElements(KnownSelectFunctions));
- Contract.Invariant(cce.NonNullElements(KnownStoreFunctions));
+ Contract.Invariant(KnownFunctions != null);
+ Contract.Invariant(KnownVariables != null);
+ Contract.Invariant(KnownTypes != null);
+ Contract.Invariant(KnownBvOps != null);
+ Contract.Invariant(KnownSelectFunctions != null);
+ Contract.Invariant(KnownStoreFunctions != null);
}