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 cd70e1d commit 3b45872Copy full SHA for 3b45872
Comp.lp
@@ -38,15 +38,15 @@ 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;
+rule isLe Eq ↪ true
+with isLe Lt ↪ true
+with isLe Gt ↪ false;
44
45
symbol isGe : Comp → 𝔹;
46
47
48
-with isLt Lt ↪ false
49
-with isLt Gt ↪ true;
+rule isGe Eq ↪ true
+with isGe Lt ↪ false
+with isGe Gt ↪ true;
50
51
// Discriminate constructors
52
0 commit comments