Skip to content
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

Reduce use of classical axioms #233

Open
3 tasks
Lysxia opened this issue Mar 21, 2022 · 0 comments
Open
3 tasks

Reduce use of classical axioms #233

Lysxia opened this issue Mar 21, 2022 · 0 comments
Labels
enhancement New feature or request question Further information is requested

Comments

@Lysxia
Copy link
Collaborator

Lysxia commented Mar 21, 2022

Non-exhaustive list of uses:

  • Label ordering is defined by a relation leq : L -> L -> Prop, with strict comparison "less than" encoded as ~ leq _ _, which leads to sometimes using excluded middle. Alternative: make label ordering decidable (leb : L -> L -> bool).
  • Indistinguishability requires special handling of events E A with empty response types A = False, again requiring excluded middle. Alternative: determine emptiness from the event, adding an assumption E A -> inhabited A \/ ~ inhabited A.
  • There are a module or two that use the bisim_is_eq axiom. Alternative: prove the necessary congruence (Proper) lemmas.
@Lysxia Lysxia added enhancement New feature or request question Further information is requested labels Mar 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant