Skip to content

Commit ef406dd

Browse files
authored
remove default DecidableEquality aliases in Definitions.agda
commited in Github App on Android
1 parent c774612 commit ef406dd

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

src/Vatras/Framework/Definitions.agda

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,17 +66,11 @@ and hence expressions are parameterized in the type of this atomic data.
6666
module _ where
6767
open import Data.String using (String; _≟_)
6868

69-
_String≟_ : DecidableEquality String
70-
_String≟_ = _≟_
71-
7269
STRING : 𝔸
73-
STRING = String and _String≟_
70+
STRING = String and _≟_
7471

7572
module _ where
7673
open import Data.Nat using (ℕ; _≟_)
7774

78-
_ℕ≟_ : DecidableEquality ℕ
79-
_ℕ≟_ = _≟_
80-
8175
NAT : 𝔸
82-
NAT = ℕ and _ℕ≟_
76+
NAT = ℕ and _≟_

0 commit comments

Comments
 (0)