]> git.sesse.net Git - stockfish/commitdiff
Use double everywhere
authorLucas Braesch <lucas.braesch@gmail.com>
Thu, 3 Oct 2013 04:05:58 +0000 (12:05 +0800)
committerMarco Costalba <mcostalba@gmail.com>
Sat, 5 Oct 2013 16:12:52 +0000 (18:12 +0200)
Rationale:

- Speed of double and float is about the same (not on the hot path anyway)

- Double makes code prettier (no need to write 1.0f, just 1.0)

- Only practical advantage of float is to use less memory, but since we never
  store large arrays of double, we don't care.

No functional change.


No differences found