Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions docs/Generics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ It's written in TeX, so to typeset the PDF yourself, you need a TeX distribution

### Using `make`

Running `make` in `docs/Generics/` will run `pdflatex` and `bibtex` in the right order to generate the final document with bibliography, index and cross-references:
Running `make` in `docs/Generics/` will run `pdflatex` and `bibtex` in the right order to generate the final document with bibliography, index, and cross-references:

```
cd docs/Generics/
Expand Down Expand Up @@ -61,16 +61,13 @@ This is a work in progress.

The following chapters need some editing:

- Part II:
- Substitution Maps
- Part IV:
- Completion

The following chapters are not yet written:

- Part III:
- Opaque Return Types
- Existential Types
- Part IV:
- The Property Map
- Rule Minimization
- Minimization
255 changes: 130 additions & 125 deletions docs/Generics/chapters/archetypes.tex

Large diffs are not rendered by default.

80 changes: 40 additions & 40 deletions docs/Generics/chapters/basic-operation.tex

Large diffs are not rendered by default.

95 changes: 47 additions & 48 deletions docs/Generics/chapters/building-generic-signatures.tex

Large diffs are not rendered by default.

226 changes: 124 additions & 102 deletions docs/Generics/chapters/compilation-model.tex

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions docs/Generics/chapters/completion.tex

Large diffs are not rendered by default.

70 changes: 0 additions & 70 deletions docs/Generics/chapters/concrete-conformances.tex

This file was deleted.

117 changes: 60 additions & 57 deletions docs/Generics/chapters/conformance-paths.tex

Large diffs are not rendered by default.

361 changes: 216 additions & 145 deletions docs/Generics/chapters/conformances.tex

Large diffs are not rendered by default.

211 changes: 106 additions & 105 deletions docs/Generics/chapters/declarations.tex

Large diffs are not rendered by default.

42 changes: 22 additions & 20 deletions docs/Generics/chapters/existential-types.tex

Large diffs are not rendered by default.

90 changes: 43 additions & 47 deletions docs/Generics/chapters/extensions.tex

Large diffs are not rendered by default.

178 changes: 91 additions & 87 deletions docs/Generics/chapters/generic-signatures.tex

Large diffs are not rendered by default.

214 changes: 106 additions & 108 deletions docs/Generics/chapters/introduction.tex

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/Generics/chapters/math-summary.tex
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ \section*{More}
\item Formal systems (\SecRef{derived req}).
\item Equivalence relations (\SecRef{valid type params}, \SecRef{rewrite graph}).
\item Partial and linear orders (\SecRef{reduced types}, \SecRef{rewritesystemintro}, \SecRef{building terms}).
\item Category theory (\SecRef{submapcomposition}).
\item Category theory (\SecRef{sec:composition}).
\item Boolean satisfiability (\SecRef{associated type inference}).
\item Directed graphs (\SecRef{type parameter graph}, \SecRef{finding conformance paths}, \SecRef{recursive conformances}, \SecRef{protocol component}).
\item Proof by induction (\SecRef{generic signature validity}).
\item Computability theory (\SecRef{tag systems}, \SecRef{word problem}).
\item Finitely-presented monoids and string rewriting (\ChapRef{monoids}, \ChapRef{completion}).
\item Computability theory (\SecRef{halting problem}, \SecRef{word problem}).
\item Finitely-presented monoids and string rewriting (\ChapRef{monoids}, \ChapRef{chap:completion}).
\end{itemize}

\end{document}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

\begin{document}

\chapter[]{Rule Minimization}\label{rqm minimization}
\chapter[]{Minimization}\label{rqm minimization}

\ifWIP
TODO:
Expand Down Expand Up @@ -42,8 +42,6 @@
\end{itemize}
\fi

\section[]{Loop Normalization}

\ifWIP
\cite{homotopyreduction}
\IndexFlag{disable-requirement-machine-loop-normalization}
Expand Down Expand Up @@ -127,6 +125,25 @@

\fi

\section[]{Concrete Contraction}\label{concrete contraction}

\IndexFlag{disable-requirement-machine-concrete-contraction}
\IndexTwoFlag{debug-requirement-machine}{concrete-contraction}

\IndexDefinition{concrete contraction}

\ifWIP
TODO:
\begin{itemize}
\item Doesn't actually appear in signature so should not impact minimization
\item The problem: it might give you a smaller anchor
\item Invariant violation without concrete contraction
\item Concrete contraction substitutes superclass and concrete types
\item Also GSB compatibility: T.A, T == C, C.A is a concrete typealias that's not an associated type. this doesn't add a rule
\item Open question: can we do this in a more principled way
\end{itemize}
\fi

\section[]{Source Code Reference}\label{rqm minimization source ref}

\end{document}
Loading