summaryrefslogtreecommitdiff
path: root/Source/Provers/SMTLib/TypeDeclCollector.cs
diff options
context:
space:
mode:
authorGravatar MichalMoskal <unknown>2011-02-23 03:54:20 +0000
committerGravatar MichalMoskal <unknown>2011-02-23 03:54:20 +0000
commitb6618257258966608b131756a2a0f8751a666bbe (patch)
tree0822320069e9e57d1fc640e921c41b50d5533d9f /Source/Provers/SMTLib/TypeDeclCollector.cs
parent80682670d13f84360d345576366190c3f054517f (diff)
Don't try to declare bv types
Diffstat (limited to 'Source/Provers/SMTLib/TypeDeclCollector.cs')
-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 b98378b2..60527ae8 100644
--- a/Source/Provers/SMTLib/TypeDeclCollector.cs
+++ b/Source/Provers/SMTLib/TypeDeclCollector.cs
@@ -183,7 +183,7 @@ void ObjectInvariant()
return;
}
- if (type.IsBool || type.IsInt)
+ if (type.IsBool || type.IsInt || type.IsBv)
return;
if (CommandLineOptions.Clo.TypeEncodingMethod == CommandLineOptions.TypeEncoding.Monomorphic) {