diff options
| author | Pierre Boutillier | 2014-04-23 13:42:25 +0200 |
|---|---|---|
| committer | Pierre Boutillier | 2014-05-02 11:04:21 +0200 |
| commit | c33ba30ec4e8ed636906d824c300788e10df20b5 (patch) | |
| tree | 9fea5f5aabf3c024413b0ba7c5b193a58b74feea /theories/NArith | |
| parent | ec9ee383575ed356438644d38c1cc8e05325537f (diff) | |
Eta contractions to please cbn
Diffstat (limited to 'theories/NArith')
| -rw-r--r-- | theories/NArith/BinNatDef.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/NArith/BinNatDef.v b/theories/NArith/BinNatDef.v index 3c0bbbad9f..c4e6bd2542 100644 --- a/theories/NArith/BinNatDef.v +++ b/theories/NArith/BinNatDef.v @@ -325,8 +325,8 @@ Definition lxor n m := (** Shifts *) -Definition shiftl_nat (a:N)(n:nat) := nat_rect _ a (fun _ => double) n. -Definition shiftr_nat (a:N)(n:nat) := nat_rect _ a (fun _ => div2) n. +Definition shiftl_nat (a:N) := nat_rect _ a (fun _ => double). +Definition shiftr_nat (a:N) := nat_rect _ a (fun _ => div2). Definition shiftl a n := match a with |
