Open jamesmckinna opened 1 year ago
Similarly: 'almost full' (AF) relations, aka 'well-quasi-order's (WQOs) ... based on this paper from 2012 ITP by Vytiniotis, Coquand and Wahlstedt
FTR, I have some of AF formalised in Idris: https://github.com/gallais/potpourri/blob/main/idris/papers/almostfull21/src/AlmostFull.idr
Re: Relation.Binary.Rewriting (just bike-shedding the name)
it claims "Concepts from rewriting theory" while it actually is about "abstract reduction systems" (e.g., Baader/Nipkow Chapter 2, https://www21.in.tum.de/~nipkow/TRaAT/toc.html; TeReSe Chapter 1) That's fine to have, but "rewriting" also suggests concrete instances (rewriting on strings, terms, graphs, ...; see other chapters of cited books).
Issue #2075 draws attention to the lack of a definition of
StronglyNormalising
(SN) of a relationR
, defined byOne fix might be to add such a definition to PR #2077... ... but a better one might be to add a new module
Induction.Normalising
defining both the above, andsuch that ... suitable properties hold on the basis of suitable assumptions about
N
andR
... (to be continued)Ooops! I hadn't previously been aware of
Relation.Binary.Rewriting
!