make for loops use int64 to hopefully speed up iterations

This commit is contained in:
2024-07-10 12:30:06 +01:00
parent 14a94274c4
commit b4a02be086
6 changed files with 884 additions and 461 deletions

View File

@@ -8,6 +8,6 @@ var e_RAT, _ = new(big.Rat).SetString("2.718281828459045235360287471352662497757
var e ArObject
func init() {
PI = Number(compiledNumber{PI_RAT})
e = Number(compiledNumber{e_RAT})
PI = Number(PI_RAT)
e = Number(e_RAT)
}