-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add minisat driver #12
Comments
Not related but to not open an issue for it: Any feedback is welcome ! |
Also I replaced the right recursion by left recursion on rule |
Interesting project 😄 it's a good resource to have for testing the grammar Is there a specific reason to prefer left recursion over right recursion? |
LALR parser can exaust the internal stack when using right recursion also the parser tree goes deeper with right recursion, see here https://www.gnu.org/software/bison/manual/bison.html#Recursion . |
Z3 Prover is nice and all, but more choices are always good.
It should be fairly straight forward to implement another driver that utilizes the C++ interface for minisat.
Take a look at this as a possibility
The text was updated successfully, but these errors were encountered: