summaryrefslogtreecommitdiff
path: root/src/parser/antlr_input.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-05-19 14:51:19 -0500
committerGitHub <noreply@github.com>2020-05-19 14:51:19 -0500
commit02b88b7665df5a6b1a2bce231d7567efdcc4b20a (patch)
treeceff0419b0d08b551620a1b7ec239ebf0e069823 /src/parser/antlr_input.cpp
parenteebfe6389321c24329d9b58f699ad67486cc30e0 (diff)
Update enum and option names for sygus languages (#4388)
This ensures sygus is interpreted as sygus version 2; sygus1 must be used to specify sygus version 1. Required for the 1.8 release.
Diffstat (limited to 'src/parser/antlr_input.cpp')
-rw-r--r--src/parser/antlr_input.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser/antlr_input.cpp b/src/parser/antlr_input.cpp
index 3157ab6e5..6dc26d439 100644
--- a/src/parser/antlr_input.cpp
+++ b/src/parser/antlr_input.cpp
@@ -247,7 +247,7 @@ AntlrInput* AntlrInput::newInput(InputLanguage lang, AntlrInputStream& inputStre
break;
}
- case LANG_SYGUS:
+ case LANG_SYGUS_V1:
case LANG_SYGUS_V2: input = new SygusInput(inputStream); break;
case LANG_TPTP:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback