-
Notifications
You must be signed in to change notification settings - Fork 366
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
feat(Computability/EpsilonNFA): define path relation #20645
base: master
Are you sure you want to change the base?
Conversation
messageFile.md |
This PR/issue depends on: |
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.
Thank you for the PR! Could you please apply the same suggestions wherever relevant?
Thanks for the review. I applied your suggestions generally. |
`Path` enables path-based reasoning in proofs involving `εNFA`.
Theorems were renamed.
Theorems are renamed to use `snake_case` and remove `_iff` suffixes, and arguments are made implicit. `@[simp]` is also added where applicable.
`IsPath` is more appropriate for a `Prop` definition. Related theorems are also renamed.
f8daea2
to
fee8650
Compare
PR summary 2cbaadd9f9
|
File | Base Count | Head Count | Change |
---|---|---|---|
Mathlib.Computability.EpsilonNFA | 684 | 685 | +1 (+0.15%) |
Import changes for all files
Files | Import difference |
---|---|
Mathlib.Computability.EpsilonNFA |
1 |
Declarations diff
+ IsPath
+ IsPath.eq_of_nil
+ IsPath.singleton
+ isPath_append
+ isPath_nil
+ isPath_singleton
+ mem_accepts_iff_exists_path
+ mem_evalFrom_iff_exists
+ mem_evalFrom_iff_exists_path
+ mem_εClosure_iff_exists
+ mem_εClosure_iff_exists_path
++ _
You can run this locally as follows
## summary with just the declaration names:
./scripts/declarations_diff.sh <optional_commit>
## more verbose report:
./scripts/declarations_diff.sh long <optional_commit>
The doc-module for script/declarations_diff.sh
contains some details about this script.
No changes to technical debt.
You can run this locally as
./scripts/technical-debt-metrics.sh pr_summary
- The
relative
value is the weighted sum of the differences with weight given by the inverse of the current value of the statistic. - The
absolute
value is therelative
value divided by the total sum of the inverses of the current values (i.e. the weighted average of the differences).
I applied your suggestions and rebased to remove merged changes from the diff. I'll open another PR for the changes in |
Some `tauto` occurrences are replaced by `exact` with named variables.
IsPath
enables path-based reasoning in proofs involvingεNFA
.