Skip to content

Commit

Permalink
Really replaced lteZero with LTEZero
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahmad Salim Al-Sibahi committed Sep 26, 2014
1 parent 562da7b commit 3867dba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/totality006/totality006.idr
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ total
prf : (a:Nat) -> (b:Nat) -> So (a > b) -> GT a b
prf Z Z Oh impossible
prf Z (S k) um = antitrue um
prf (S k) Z um = LTESucc lteZero
prf (S k) Z um = LTESucc LTEZero
-- prf (S _) (S _) Oh impossible


2 changes: 1 addition & 1 deletion test/totality006/totality006a.idr
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ total
prf' : (a:Nat) -> (b:Nat) -> So (a > b) -> GT a b
prf' Z Z Oh impossible
prf' Z (S k) um = antitrue um
prf' (S k) Z um = LTESucc lteZero
prf' (S k) Z um = LTESucc LTEZero
prf' (S _) (S _) Oh impossible

0 comments on commit 3867dba

Please sign in to comment.