chore(library/standard/data/nat/div): remove TODO

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2014-08-21 17:58:03 -07:00
parent 6cf73b51e2
commit 0df87bae24

View file

@ -663,9 +663,7 @@ have aux : ∀m, P m n, from
aux m
theorem gcd_succ (m n : ) : gcd m (succ n) = gcd (succ n) (m mod succ n) :=
-- TODO: note, fails if "succ n" is not given explicitly
-- remember that if_neg needs to infer "decidable" for n ~= 0
trans (gcd_def _ (succ n)) (if_neg (succ_ne_zero n) _ _)
trans (gcd_def _ _) (if_neg (succ_ne_zero n) _ _)
theorem gcd_one (n : ) : gcd n 1 = 1 := sorry
-- (by simp) (gcd_succ n 0)