<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coq/dev/v8-syntax, branch master</title>
<subtitle>The formal proof system</subtitle>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/'/>
<entry>
<title>Doc update with mlg extension - fix #10855</title>
<updated>2019-10-13T20:02:02+00:00</updated>
<author>
<name>mcaci</name>
</author>
<published>2019-10-12T12:24:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=3e0bf68bdc1ac6bde7bd04236657fb4d554817ad'/>
<id>3e0bf68bdc1ac6bde7bd04236657fb4d554817ad</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove Show Script (deprecated in 8.10)</title>
<updated>2019-05-31T17:11:18+00:00</updated>
<author>
<name>Gaëtan Gilbert</name>
</author>
<published>2019-05-31T11:09:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=6a5dcbbfea1af0308a4d49e7c5bcea26d74a739d'/>
<id>6a5dcbbfea1af0308a4d49e7c5bcea26d74a739d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixing typos - Part 1</title>
<updated>2019-05-21T21:07:55+00:00</updated>
<author>
<name>JPR</name>
</author>
<published>2019-05-21T21:07:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=e6322e23958a937fa01960f8ce320717b9863253'/>
<id>e6322e23958a937fa01960f8ce320717b9863253</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove romega</title>
<updated>2018-09-25T09:45:55+00:00</updated>
<author>
<name>Vincent Laporte</name>
</author>
<published>2018-09-11T12:32:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=a1f10626bed1db14ce116e9201ed05dadfc366b4'/>
<id>a1f10626bed1db14ce116e9201ed05dadfc366b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add dev/v8-syntax/check-grammar byproducts to gitignore.</title>
<updated>2017-08-01T17:28:11+00:00</updated>
<author>
<name>Gaëtan Gilbert</name>
</author>
<published>2017-06-22T11:19:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=8d85f0876d28a760bca693624f98145e4ee8f331'/>
<id>8d85f0876d28a760bca693624f98145e4ee8f331</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix syntax-v8.tex bad parenthesizing</title>
<updated>2017-08-01T17:26:33+00:00</updated>
<author>
<name>Gaëtan Gilbert</name>
</author>
<published>2017-06-21T13:23:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=98af6dfee8ec5a03580cf580d7e09b3e49265322'/>
<id>98af6dfee8ec5a03580cf580d7e09b3e49265322</id>
<content type='text'>
Introduced c1e9a27d383688e44ba34ada24fe08151cb5846e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduced c1e9a27d383688e44ba34ada24fe08151cb5846e
</pre>
</div>
</content>
</entry>
<entry>
<title>[vernac] Remove `Save thm id.` command.</title>
<updated>2017-05-22T23:37:52+00:00</updated>
<author>
<name>Emilio Jesus Gallego Arias</name>
</author>
<published>2017-05-17T19:04:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=c1e9a27d383688e44ba34ada24fe08151cb5846e'/>
<id>c1e9a27d383688e44ba34ada24fe08151cb5846e</id>
<content type='text'>
We'd like to cleanup the `proof_end` type so we can have a smaller
path in proof save. Note that the construction:

```
Goal Type.
⋮
Save id.
```

has to be handled by the STM in the same path as Defined (but with an
opaque flag), as `Save id` will alter the environment and cannot be
processed in parallel.

We thus try to simply such paths a bit, as complexity of `lemmas.ml`
seems like an issue these days. The form `Save Theorem id` doesn't
really seem used, and moreover we should really add a type of "Goal",
and unify syntax.

It is often the case that beginners try `Goal addnC n : n + 0 = n."
etc...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We'd like to cleanup the `proof_end` type so we can have a smaller
path in proof save. Note that the construction:

```
Goal Type.
⋮
Save id.
```

has to be handled by the STM in the same path as Defined (but with an
opaque flag), as `Save id` will alter the environment and cannot be
processed in parallel.

We thus try to simply such paths a bit, as complexity of `lemmas.ml`
seems like an issue these days. The form `Save Theorem id` doesn't
really seem used, and moreover we should really add a type of "Goal",
and unify syntax.

It is often the case that beginners try `Goal addnC n : n + 0 = n."
etc...
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some typos.</title>
<updated>2015-12-07T09:52:24+00:00</updated>
<author>
<name>Guillaume Melquiond</name>
</author>
<published>2015-12-07T09:52:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=df3a49a18c5b01984000df9244ecea9c275b30cd'/>
<id>df3a49a18c5b01984000df9244ecea9c275b30cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some typos.</title>
<updated>2015-10-13T16:30:47+00:00</updated>
<author>
<name>Guillaume Melquiond</name>
</author>
<published>2015-10-13T16:30:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=ed95f122f3c68becc09c653471dc2982b346d343'/>
<id>ed95f122f3c68becc09c653471dc2982b346d343</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove obsolete script univdot, update dev doc about universes</title>
<updated>2010-12-24T23:49:15+00:00</updated>
<author>
<name>glondu</name>
</author>
<published>2010-12-24T23:49:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=e5b94c29ff49f8b880290a72519157d26351bc6c'/>
<id>e5b94c29ff49f8b880290a72519157d26351bc6c</id>
<content type='text'>
By the way, definitely remove "Dump Universes", which has been
deprecated since 2006 (r9306).

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13754 85f007b7-540e-0410-9357-904b9bb8a0f7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
By the way, definitely remove "Dump Universes", which has been
deprecated since 2006 (r9306).

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13754 85f007b7-540e-0410-9357-904b9bb8a0f7
</pre>
</div>
</content>
</entry>
</feed>
