add rewriting
This commit is contained in:
parent
343851128a
commit
4e2c2962e6
20 changed files with 39 additions and 1 deletions
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -3,7 +3,7 @@
|
|||
"gitdoc.enabled": false,
|
||||
"gitdoc.autoCommitDelay": 300000,
|
||||
"gitdoc.commitMessageFormat": "'auto gitdoc commit'",
|
||||
"agdaMode.connection.commandLineOptions": "--rewriting --without-K",
|
||||
"agdaMode.connection.commandLineOptions": "--without-K",
|
||||
"search.exclude": {
|
||||
"src/CubicalHott/**": true
|
||||
},
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<summary>Imports</summary>
|
||||
|
||||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter1 where
|
||||
|
||||
open import Agda.Primitive public
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter1Exercises where
|
||||
|
||||
open import HottBook.Chapter1
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter1Util where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<summary>Imports</summary>
|
||||
|
||||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter2 where
|
||||
|
||||
open import Agda.Primitive.Cubical hiding (i1)
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter2Exercises where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter2Lemma221 where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter2Lemma231 where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter2Util where
|
||||
|
||||
open import HottBook.Chapter1
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<summary>Imports</summary>
|
||||
|
||||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter3 where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter3Definition331 where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter3Exercises where
|
||||
|
||||
open import HottBook.Chapter1
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter3Lemma333 where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<summary>Imports</summary>
|
||||
|
||||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter4 where
|
||||
|
||||
open import HottBook.Chapter1
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter5 where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
<summary>Imports</summary>
|
||||
|
||||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter6 where
|
||||
|
||||
open import HottBook.Chapter1
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter6Exercises where
|
||||
```
|
|
@ -2,6 +2,8 @@
|
|||
<summary>Imports</summary>
|
||||
|
||||
```
|
||||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Chapter8 where
|
||||
|
||||
open import HottBook.Chapter1
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.CoreUtil where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
{-# OPTIONS --rewriting #-}
|
||||
|
||||
module HottBook.Util where
|
||||
|
||||
open import Agda.Primitive
|
||||
|
|
Loading…
Reference in a new issue