Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Comp.lp
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ with isGt Gt ↪ true;

symbol isLe : Comp → 𝔹;

rule isLt Eq ↪ true
with isLt Lt ↪ true
with isLt Gt ↪ false;
rule isLe Eq ↪ true
with isLe Lt ↪ true
with isLe Gt ↪ false;

symbol isGe : Comp → 𝔹;

rule isLt Eq ↪ true
with isLt Lt ↪ false
with isLt Gt ↪ true;
rule isGe Eq ↪ true
with isGe Lt ↪ false
with isGe Gt ↪ true;

// Discriminate constructors

Expand Down
Loading