You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we do not allow repetitions of Definitions and Theorems. This is causing various issues with the IPFS branch that are not worth getting into here.
Personally, I see no issue with allowing repetitions of definitions and theorems as long as they are identical.
If we go this way, then one issue to consider is whether we use "identical" to mean "up to lambda-equivalence". For example, are the following two defintions identical?
Definition is_abs : tm -> prop by
is_abs (abs R).
Definition is_abs : tm -> prop by
is_abs (abs (x\ R x)).
The text was updated successfully, but these errors were encountered:
Currently we do not allow repetitions of
Definition
s andTheorem
s. This is causing various issues with the IPFS branch that are not worth getting into here.Personally, I see no issue with allowing repetitions of definitions and theorems as long as they are identical.
(Issue arose in discussion with @innofarah.)
If we go this way, then one issue to consider is whether we use "identical" to mean "up to lambda-equivalence". For example, are the following two defintions identical?
The text was updated successfully, but these errors were encountered: