Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
simongregersen committed Oct 10, 2023
1 parent 2b38ccd commit 906c61c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.html
Original file line number Diff line number Diff line change
Expand Up @@ -226,10 +226,10 @@ <h2 id="building-the-development">Building the development</h2>
<code>make -j N</code> where <code>N</code> is the number of cores
available on your machine.</p>
<h2 id="axioms">Axioms</h2>
<p>The development relies on axioms for classical reasoning and the
<p>The development relies on axioms for classical reasoning and an
axiomatization of the reals numbers, both found in Coq’s standard
library. The following list is produced when executing the command
Print Assumptions eager_lazy_equiv. in <a
<code>Print Assumptions eager_lazy_equiv.</code> in <a
href="theories/examples/lazy_eager_coin.v"><code>theories/examples/lazy_eager_coin.v</code></a>:</p>
<pre><code>ClassicalDedekindReals.sig_not_dec : ∀ P : Prop, {¬ ¬ P} + {¬ P}
ClassicalDedekindReals.sig_forall_dec : ∀ P : nat → Prop, (∀ n : nat, {P n} + {¬ P n}) → {n : nat | ¬ P n} + {∀ n : nat, P n}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You should now be able to build the development by using `make -j N` where `N` i

## Axioms

The development relies on axioms for classical reasoning and the axiomatization of the reals numbers, both found in Coq's standard library. The following list is produced when executing the command "Print Assumptions eager_lazy_equiv." in [`theories/examples/lazy_eager_coin.v`](theories/examples/lazy_eager_coin.v):
The development relies on axioms for classical reasoning and an axiomatization of the reals numbers, both found in Coq's standard library. The following list is produced when executing the command `Print Assumptions eager_lazy_equiv.` in [`theories/examples/lazy_eager_coin.v`](theories/examples/lazy_eager_coin.v):

```
ClassicalDedekindReals.sig_not_dec : ∀ P : Prop, {¬ ¬ P} + {¬ P}
Expand Down

0 comments on commit 906c61c

Please sign in to comment.