Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/build
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail

echo "Building..."

Expand Down
3 changes: 2 additions & 1 deletion src/Data/EuclideanRing.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- math.maxinteger is Lua 5.3+; PureScript Int is 32-bit, hence the
-- literal bound in intDegree.
return {
-- math.maxinteger is Lua 5.3+; PureScript Int is 32-bit
intDegree = (function(x) return math.min(math.abs(x), 2147483647) end),
intDiv = (function(x)
return function(y)
Expand Down
Loading