<tr>
<td class="snns component cyan">sizes</td>
<td class="snns plane cyan">files</td>
- <td class="snnn number cyan">5 </td>
+ <td class="snnn number cyan">4 </td>
<td class="snns plane cyan">characters</td>
- <td class="snnn number cyan">5790</td>
+ <td class="snnn number cyan">3928</td>
<td class="snns plane cyan">nodes</td>
- <td class="ssnn number cyan">9846</td>
+ <td class="ssnn number cyan">3637</td>
</tr>
<tr>
<td class="snns component green">propositions</td>
<td class="snns plane green">theorems</td>
- <td class="snnn number green">4</td>
+ <td class="snnn number green">2</td>
<td class="snns plane green">lemmas</td>
<td class="snnn number green">1</td>
<td class="snns plane green">total</td>
- <td class="ssnn number green">5</td>
+ <td class="ssnn number green">3</td>
</tr>
<tr>
<td class="snss component yellow">concepts</td>
<td class="snss plane yellow">declared</td>
<td class="snsn number yellow">3</td>
<td class="snss plane yellow">defined</td>
- <td class="snsn number yellow">10</td>
+ <td class="snsn number yellow">9</td>
<td class="snss plane yellow">total</td>
- <td class="sssn number yellow">13</td>
+ <td class="sssn number yellow">12</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
- <td class="snns component yellow">MLTT1</td>
- <td class="snns plane yellow" />
- <td class="snns file yellow">genv_primitive</td>
- <td class="ssnn file yellow">judgement</td>
+ <td class="snns component red">functional</td>
+ <td class="snns plane red">reduction and type machine</td>
+ <td class="snns file red">rtm</td>
+ <td class="ssnn file red">rtm_step ( ? ⇨ ? )</td>
</tr>
<tr>
- <td class="snns component orange">functional</td>
- <td class="snns plane orange">reduction and type machine</td>
- <td class="snns file orange">rtm</td>
- <td class="ssnn file orange">rtm_step ( ? ⇨ ? )</td>
- </tr>
- <tr>
- <td class="nnns component orange">
+ <td class="nnss component red">
<br />
</td>
- <td class="snns plane orange">unfold</td>
- <td class="snns file orange">lift ( ↑[?,?] ? )</td>
- <td class="ssnn file orange">subst ( [?←?] ? )</td>
- </tr>
- <tr>
- <td class="snss component red">examples</td>
- <td class="snss plane red" />
- <td class="snss file red" />
+ <td class="snss plane red">relocation</td>
+ <td class="snss file red">lift ( ↑[?,?] ? )</td>
<td class="sssn file red">
<br />
</td>
<div xmlns:ld="http://lambdadelta.info/" class="spacer">
<br />
</div>
- <div xmlns:ld="http://lambdadelta.info/" class="spacer">Last update: Thu, 16 May 2013 16:37:26 +0200</div>
+ <div xmlns:ld="http://lambdadelta.info/" class="spacer">Last update: Sat, 01 Jun 2013 18:41:06 +0200</div>
</body>
</html>
<td class="snns plane cyan">files</td>
<td class="snnn number cyan">169 </td>
<td class="snns plane cyan">characters</td>
- <td class="snnn number cyan">347556</td>
+ <td class="snnn number cyan">348328</td>
<td class="snns plane cyan">nodes</td>
- <td class="ssnn number cyan">969490</td>
+ <td class="ssnn number cyan">970177</td>
</tr>
<tr>
<td class="snns component green">propositions</td>
<td class="snns plane green">theorems</td>
<td class="snnn number green">75</td>
<td class="snns plane green">lemmas</td>
- <td class="snnn number green">707</td>
+ <td class="snnn number green">716</td>
<td class="snns plane green">total</td>
- <td class="ssnn number green">782</td>
+ <td class="ssnn number green">791</td>
</tr>
<tr>
<td class="snss component yellow">concepts</td>
<div xmlns:ld="http://lambdadelta.info/" class="spacer">
<br />
</div>
- <div xmlns:ld="http://lambdadelta.info/" class="spacer">Last update: Thu, 16 May 2013 16:37:26 +0200</div>
+ <div xmlns:ld="http://lambdadelta.info/" class="spacer">Last update: Sat, 01 Jun 2013 18:41:06 +0200</div>
</body>
</html>
--- /dev/null
+H=@
+
+include ../../etc/Makefile.defs
+
+DIST=$(EXEC)---$(VERSION)
+DATE=$(shell date +%y%m%d)
+
+OCAMLOPTIONS = -linkpkg -thread -rectypes -package \"$(REQUIRES)\"
+OCAMLC = $(OCAMLFIND) ocamlc $(OCAMLOPTIONS)
+OCAMLOPT = $(OCAMLFIND) opt $(OCAMLOPTIONS)
+
+all: $(EXEC).native
+
+$(EXEC).native: $(wildcard *.ml) $(wildcard *.mli) $(wildcard *.mly) $(wildcard *.mll)
+ @echo " OCAMLBUILD $(EXEC).native"
+ $(H)ocamlbuild -ocamlc "$(OCAMLC)" -ocamlopt "$(OCAMLOPT)" -yaccflags "$(YACCFLAGS)" $(EXEC).native
+
+clean:
+ ocamlbuild -clean
+ rm -rf $(DIST) $(DIST).tgz
+
+dist:
+ mkdir -p $(DIST)/Sources
+ cp ReadMe $(DIST)
+ cp *.ml *.mli *.mll *.mly Makefile _tags $(DIST)/Sources
+ cd $(DIST); ln -s Sources/$(EXEC).native $(EXEC)
+ tar -cvzf $(DIST).tgz $(DIST)
+++ /dev/null
-H=@
-
-include ../../etc/Makefile.defs
-
-DIST=$(EXEC)---$(VERSION)
-DATE=$(shell date +%y%m%d)
-
-OCAMLOPTIONS = -linkpkg -thread -rectypes -package \"$(REQUIRES)\"
-OCAMLC = $(OCAMLFIND) ocamlc $(OCAMLOPTIONS)
-OCAMLOPT = $(OCAMLFIND) opt $(OCAMLOPTIONS)
-
-all: $(EXEC).native
-
-$(EXEC).native: $(wildcard *.ml) $(wildcard *.mli) $(wildcard *.mly) $(wildcard *.mll)
- @echo " OCAMLBUILD $(EXEC).native"
- $(H)ocamlbuild -ocamlc "$(OCAMLC)" -ocamlopt "$(OCAMLOPT)" -yaccflags "$(YACCFLAGS)" $(EXEC).native
-
-clean:
- ocamlbuild -clean
- rm -rf $(DIST) $(DIST).tgz
-
-dist:
- mkdir -p $(DIST)/Sources
- cp ReadMe $(DIST)
- cp *.ml *.mli *.mll *.mly Makefile _tags $(DIST)/Sources
- cd $(DIST); ln -s Sources/$(EXEC).native $(EXEC)
- tar -cvzf $(DIST).tgz $(DIST)