We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa5fd7c commit c65df7eCopy full SHA for c65df7e
Comp.lp
@@ -36,6 +36,18 @@ rule isGt Eq ↪ false
36
with isGt Lt ↪ false
37
with isGt Gt ↪ true;
38
39
+symbol isLe : Comp → 𝔹;
40
+
41
+rule isLt Eq ↪ true
42
+with isLt Lt ↪ true
43
+with isLt Gt ↪ false;
44
45
+symbol isGe : Comp → 𝔹;
46
47
48
+with isLt Lt ↪ false
49
+with isLt Gt ↪ true;
50
51
// Discriminate constructors
52
53
symbol Lt≠Eq : π (Lt ≠ Eq) ≔
List.lp
@@ -321,7 +321,7 @@ end;
321
322
// concatenation
323
324
-symbol ++ [a] : 𝕃 a → 𝕃 a → 𝕃 a; notation ++ infix right 30; // \cdot
+symbol ++ [a] : 𝕃 a → 𝕃 a → 𝕃 a; notation ++ infix right 30;
325
326
assert x y z ⊢ x ++ y ++ z ≡ x ++ (y ++ z);
327
assert x l m ⊢ x ⸬ l ++ m ≡ x ⸬ (l ++ m);
0 commit comments