Skip to content

Commit cabc92f

Browse files
committed
agda 2.6.4.3
1 parent c4153e5 commit cabc92f

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

MetaLogic.agda-lib

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: MetaLogic
22
depend:
3-
cubical-0.5
3+
cubical-0.7
44
standard-library-2.0
55
include: src
66
flags:

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
- [Agda v2.6.4.1](https://github.com/agda/agda/releases/tag/v2.6.4.1)
6-
- [agda-stdlib 1.7.2 78e11bdee2](https://github.com/agda/agda-stdlib/tree/78e11bdee2eaaf7652c7be32d890821aeebe8781)
7-
- [cubical-0.5 5427228029](https://github.com/agda/cubical/tree/5427228029fcd4f49cf28638835dac9082358121)
5+
- [Agda v2.6.4.3](https://github.com/agda/agda/releases/tag/v2.6.4.1)
6+
- [agda-stdlib 2.0](https://github.com/agda/agda-stdlib/releases/tag/v2.0)
7+
- [cubical 0.7](https://github.com/agda/cubical/releases/tag/v0.7)
88
- [Font: JuliaMono](https://juliamono.netlify.app/)

src/FOL/Syntax/ProofEnumeration.lagda.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ module FOL.Syntax.ProofEnumeration (ℒ : Language) where
1515
open import FOL.Syntax.Base ℒ
1616
open import FOL.Syntax.Discrete ℒ
1717
open import FOL.Syntax.Enumeration ℒ
18+
open Enumℙ ⦃ ... ⦄
1819
instance _ = ℒ
1920
```
2021

src/Foundation/Data/List/Solver.agda

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ private module Test (xs ys zs : 𝕃 ℕ) where
3131
f zero = xs
3232
f (suc n) = f n ++ ys
3333

34-
test-solve∈++-n : n xs ⊆ f n
35-
test-solve∈++-n zero = id
36-
test-solve∈++-n (suc n) H = solve∈++ (test-solve∈++-n n H)
34+
--test-solve∈++-n : n xs ⊆ f n
35+
--test-solve∈++-n zero = id
36+
--test-solve∈++-n (suc n) H = solve∈++ (test-solve∈++-n n H)
3737

3838
test-solve∈++-0 : xs ⊆ xs ++ ys ++ zs
3939
test-solve∈++-0 H = solve∈++ H

src/Foundation/Function/Enumeration/ListView/Base.lagda.md

-2
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,6 @@ record Enumℙ {A : 𝕋 ℓ} (P : A → 𝕋 ℓ′) : 𝕋 (ℓ ⊔ ℓ′) wh
150150
cumℙ : Cumulation enumℙ
151151
witℙ : ∀ x → P x ↔ enumℙ witness x
152152
153-
open Enumℙ ⦃...⦄ public
154-
155153
Enum↔ℙ : Enum A ↔ Enumℙ λ (_ : A) → ⊤
156154
Enum↔ℙ = ⇒: (λ (mkEnum f cum H) → mkEnumℙ f cum λ x → ⇒: (λ _ → H x) ⇐: (λ _ → tt))
157155
⇐: (λ (mkEnumℙ f cum H) → mkEnum f cum λ x → H x .⇒ tt)

0 commit comments

Comments
 (0)