summaryrefslogtreecommitdiff
path: root/Source/Provers
diff options
context:
space:
mode:
authorGravatar Checkmate50 <dgeisler50@gmail.com>2016-06-07 01:01:49 -0600
committerGravatar Checkmate50 <dgeisler50@gmail.com>2016-06-07 01:01:49 -0600
commit743be23f3961e02f1d556860f9fb0e17b98ab54d (patch)
treedc725bbaecd74984fb76d9be2db5d81bc74369ca /Source/Provers
parentaef6aa03c2ec101e08ea4839003b4d61a6c06d24 (diff)
fixed some merging issues
Diffstat (limited to 'Source/Provers')
-rw-r--r--Source/Provers/SMTLib/TypeDeclCollector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Provers/SMTLib/TypeDeclCollector.cs b/Source/Provers/SMTLib/TypeDeclCollector.cs
index eaed83e9..1d63fa5d 100644
--- a/Source/Provers/SMTLib/TypeDeclCollector.cs
+++ b/Source/Provers/SMTLib/TypeDeclCollector.cs
@@ -311,7 +311,7 @@ void ObjectInvariant()
return;
}
- if (type.IsBool || type.IsInt || type.IsReal || type.IsBv)
+ if (type.IsBool || type.IsInt || type.IsReal || type.IsBv || type.IsFloat)
return;
CtorType ctorType = type as CtorType;