From 6404d4f5f65eefbcc91c733f04942d6cb817f46a Mon Sep 17 00:00:00 2001 From: ajreynol Date: Tue, 1 Nov 2016 16:47:24 -0500 Subject: [PATCH] Minor fix to cvc3_compat. --- src/compat/cvc3_compat.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/compat/cvc3_compat.cpp b/src/compat/cvc3_compat.cpp index 8c9992164..18345b3b2 100644 --- a/src/compat/cvc3_compat.cpp +++ b/src/compat/cvc3_compat.cpp @@ -1425,9 +1425,7 @@ void ValidityChecker::dataType(const std::vector& names, const CVC4::Datatype& dt = (*i).getDatatype(); // ensure it's well-founded (the check is done here because // that's how it is in CVC3) - if(!dt.isWellFounded()) { - throw TypecheckException(d_em->mkConst(dt), "datatype is not well-founded"); - } + CompatCheckArgument(!dt.isWellFounded(), "datatype is not well-founded"); for(CVC4::Datatype::const_iterator j = dt.begin(); j != dt.end(); ++j) { // For each constructor, register its name and its selectors names. CompatCheckArgument( -- 2.30.2