|
|
|
|
|
by jhbadger
1929 days ago
|
|
Are you sure that isn't just doing integer math? I don't have a scheme implementation handy, but I tried it in sbcl Common Lisp and while
(- (expt 2 64) (- (expt 2 64) 1)) does yield 1, (- (expt 2.0 64) (- (expt 2.0 64) 1)) yields 0. |
|