-
Notifications
You must be signed in to change notification settings - Fork 2
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
[auto-reverse] apply reversible selection #71
base: master
Are you sure you want to change the base?
Conversation
f054bc7
to
350a6af
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is an infinite loop :( Because this is a recursive function.
Ex: ?A
-> A,?A
-> A,A,?A
-> A,A,A,?A
-> ... -> A,...,A,?A
It's very different spirit form previous auto-reverse rules :
- the other rules only apply one rule
- the other rules simplify the sequent, whether this one makes it longer.
Perhaps we should rethink it.
Absolutely! |
See video on #64 : we should prevent selection if it has been already applied. |
Selection is not applied anymore if sub-formula already present.
|
Fixes #64