Fix a couple of parse error messages for sygus (#8381)
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>
Thu, 24 Mar 2022 16:57:53 +0000 (11:57 -0500)
committerGitHub <noreply@github.com>
Thu, 24 Mar 2022 16:57:53 +0000 (16:57 +0000)
src/parser/smt2/Smt2.g

index 8edb3910799d6f444dbf7ac4547f94e203c4e223..ac7392b86fde6dfbc1739585e354fb53e5545b20 100644 (file)
@@ -281,8 +281,8 @@ command [std::unique_ptr<cvc5::Command>* cmd]
       // we allow overloading for function declarations
       if( PARSER_STATE->sygus() )
       {
-        PARSER_STATE->parseErrorLogic("declare-fun are not allowed in sygus "
-                                      "version 2.0");
+        PARSER_STATE->parseError("declare-fun are not allowed in sygus "
+                                 "version 2.0");
       }
       else
       {
@@ -780,8 +780,8 @@ smt25Command[std::unique_ptr<cvc5::Command>* cmd]
     { // allow overloading here
       if( PARSER_STATE->sygus() )
       {
-        PARSER_STATE->parseErrorLogic("declare-const is not allowed in sygus "
-                                      "version 2.0");
+        PARSER_STATE->parseError("declare-const is not allowed in sygus "
+                                 "version 2.0");
       }
       api::Term c =
           PARSER_STATE->bindVar(name, t, true);