<feed xmlns='http://www.w3.org/2005/Atom'>
<title>coq/doc/stdlib/index-list.html.template, branch master</title>
<subtitle>The formal proof system</subtitle>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/'/>
<entry>
<title>add Cantor pairing to_nat and its inverse of_nat</title>
<updated>2021-04-02T15:24:12+00:00</updated>
<author>
<name>Andrej Dudenhefner</name>
</author>
<published>2021-03-25T17:19:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=2b02934f003836133d194d29f6a32c289280263c'/>
<id>2b02934f003836133d194d29f6a32c289280263c</id>
<content type='text'>
add polynomial specifications of to_nat
add changelog and doc entries
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
add polynomial specifications of to_nat
add changelog and doc entries
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding a changelog and registering the new file in the documentation.</title>
<updated>2021-03-16T19:02:56+00:00</updated>
<author>
<name>Pierre-Marie Pédrot</name>
</author>
<published>2021-03-10T13:07:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=761d3ccaf6a593a73811da38fa731c2f601902f8'/>
<id>761d3ccaf6a593a73811da38fa731c2f601902f8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge PR #13236: Add a type of format strings to Ltac2.</title>
<updated>2021-03-06T16:25:33+00:00</updated>
<author>
<name>Michael Soegtrop</name>
</author>
<published>2021-03-06T16:25:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=2c47f51a9b03b962cf688967f2ad1bdf0df448c9'/>
<id>2c47f51a9b03b962cf688967f2ad1bdf0df448c9</id>
<content type='text'>
Reviewed-by: JasonGross
Reviewed-by: MSoegtropIMC
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-by: JasonGross
Reviewed-by: MSoegtropIMC
</pre>
</div>
</content>
</entry>
<entry>
<title>Signed primitive integers</title>
<updated>2021-02-26T13:32:41+00:00</updated>
<author>
<name>Ana</name>
</author>
<published>2020-12-01T08:52:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=4302a75d82b9ac983cd89dd01c742c36777d921b'/>
<id>4302a75d82b9ac983cd89dd01c742c36777d921b</id>
<content type='text'>
Signed primitive integers defined on top of the existing unsigned ones
with two's complement.

The module Sint63 includes the theory of signed primitive integers that
differs from the unsigned case.

Additions to the kernel:
  les (signed &lt;=), lts (signed &lt;), compares (signed compare),
  divs (signed division), rems (signed remainder),
  asr (arithmetic shift right)
(The s suffix is not used when importing the Sint63 module.)

The printing and parsing of primitive ints was updated and the
int63_syntax_plugin was removed (we use Number Notation instead).

A primitive int is parsed / printed as unsigned or signed depending on
the scope. In the default (Set Printing All) case, it is printed in
hexadecimal.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed primitive integers defined on top of the existing unsigned ones
with two's complement.

The module Sint63 includes the theory of signed primitive integers that
differs from the unsigned case.

Additions to the kernel:
  les (signed &lt;=), lts (signed &lt;), compares (signed compare),
  divs (signed division), rems (signed remainder),
  asr (arithmetic shift right)
(The s suffix is not used when importing the Sint63 module.)

The printing and parsing of primitive ints was updated and the
int63_syntax_plugin was removed (we use Number Notation instead).

A primitive int is parsed / printed as unsigned or signed depending on
the scope. In the default (Set Printing All) case, it is printed in
hexadecimal.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a type of format strings to Ltac2.</title>
<updated>2021-01-22T10:55:21+00:00</updated>
<author>
<name>Pierre-Marie Pédrot</name>
</author>
<published>2020-06-25T21:35:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=0c1af31e9d338a13b7df2b4468b81e76ef182d32'/>
<id>0c1af31e9d338a13b7df2b4468b81e76ef182d32</id>
<content type='text'>
It provides an abstract type of well-typed format strings, a scope to parse
them and a minimal printf-like API.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It provides an abstract type of well-typed format strings, a scope to parse
them and a minimal printf-like API.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge PR #13275: Put all Int63 primitives in a separate file</title>
<updated>2020-12-02T15:57:04+00:00</updated>
<author>
<name>Vincent Laporte</name>
</author>
<published>2020-12-02T15:57:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=11730fa0ed2cb10da1ffc00f4f1140572134937e'/>
<id>11730fa0ed2cb10da1ffc00f4f1140572134937e</id>
<content type='text'>
Ack-by: SkySkimmer
Ack-by: ppedrot
Reviewed-by: vbgl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Ack-by: SkySkimmer
Ack-by: ppedrot
Reviewed-by: vbgl
</pre>
</div>
</content>
</entry>
<entry>
<title>Put all Int63 primitives in a separate file</title>
<updated>2020-12-02T08:26:53+00:00</updated>
<author>
<name>Pierre Roux</name>
</author>
<published>2020-10-26T13:43:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=853b838681db635f51fc3c7ba3dfe26bc6712d72'/>
<id>853b838681db635f51fc3c7ba3dfe26bc6712d72</id>
<content type='text'>
Following a request from Pierre-Marie Pédrot in #13258
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Following a request from Pierre-Marie Pédrot in #13258
</pre>
</div>
</content>
</entry>
<entry>
<title>Update compat infrastructure for 8.14</title>
<updated>2020-11-23T15:47:06+00:00</updated>
<author>
<name>Enrico Tassi</name>
</author>
<published>2020-11-23T15:47:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=17da7c41b17da3280cb2c182387685ad4be6022f'/>
<id>17da7c41b17da3280cb2c182387685ad4be6022f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[compat] remove 8.10</title>
<updated>2020-11-09T13:55:23+00:00</updated>
<author>
<name>Enrico Tassi</name>
</author>
<published>2020-11-09T13:55:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=a028e70817e7fd43b35643a8faa9bc7f59897ddb'/>
<id>a028e70817e7fd43b35643a8faa9bc7f59897ddb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[numeral notation] Specify R</title>
<updated>2020-11-04T23:20:19+00:00</updated>
<author>
<name>Pierre Roux</name>
</author>
<published>2020-09-03T11:20:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.0x7felf.com/coq/commit/?id=edea770457aea05a7e6a64c1217f66dfc6930419'/>
<id>edea770457aea05a7e6a64c1217f66dfc6930419</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
