From 65f720aac2d497c6e829d9c76638073a10060e7d Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Fri, 28 Sep 2012 17:29:01 +0000 Subject: Public interface review items: * Internal uses of CheckArgument changed to AssertArgument/AlwaysAssertArgument() * Make util/Assert.h cvc4_private instead of public, so AssertionException and friends are now internal-only * CheckArgument() throws non-AssertionException * things outside the core library (parsers, driver) use regular C-style assert, or a public exception type. * auto-generated documentation for Smt options and internal options Also, a small fix to SMT-LIBv1 QF_ABV and QF_AUFBV definitions, which were nonstandard. --- src/parser/smt1/smt1_input.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/parser/smt1/smt1_input.h') diff --git a/src/parser/smt1/smt1_input.h b/src/parser/smt1/smt1_input.h index 77d6f4b50..0f8a962ba 100644 --- a/src/parser/smt1/smt1_input.h +++ b/src/parser/smt1/smt1_input.h @@ -69,7 +69,7 @@ protected: * @throws ParserException if an error is encountered during parsing. */ Command* parseCommand() - throw(ParserException, TypeCheckingException, AssertionException); + throw(ParserException, TypeCheckingException); /** * Parse an expression from the input. Returns a null @@ -78,7 +78,7 @@ protected: * @throws ParserException if an error is encountered during parsing. */ Expr parseExpr() - throw(ParserException, TypeCheckingException, AssertionException); + throw(ParserException, TypeCheckingException); private: -- cgit v1.2.3