compute-io/gcd

Max integer used in implementation is incorrect

Closed this issue · 1 comments

var MAXINT = Math.pow( 2, 31 ) - 1;

The integer used in the implementation is the max safe FLOAT64 integer.

This was addressed in e475160.