@bldrs-ai/conway 1.580.1549 → 1.589.1552
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiled/Dist/ConwayGeomWasmNode.js +0 -0
- package/compiled/Dist/ConwayGeomWasmNodeMT.js +0 -0
- package/compiled/Dist/ConwayGeomWasmWeb.js +0 -0
- package/compiled/Dist/ConwayGeomWasmWebMT.wasm +0 -0
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNode.js +0 -0
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNodeMT.js +0 -0
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWeb.js +0 -0
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.wasm +0 -0
- package/compiled/examples/browser-bundled.cjs +4 -3
- package/compiled/examples/cli-bundled.cjs +5 -4
- package/compiled/examples/cli-step-bundled.cjs +5 -4
- package/compiled/examples/validator-bundled.cjs +4 -3
- package/compiled/src/AP214E3_2010/ap214_helical_thread_flank.test.d.ts +2 -0
- package/compiled/src/AP214E3_2010/ap214_helical_thread_flank.test.d.ts.map +1 -0
- package/compiled/src/AP214E3_2010/ap214_helical_thread_flank.test.js +123 -0
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.d.ts +36 -3
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.d.ts.map +1 -1
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.js +61 -9
- package/compiled/src/AP214E3_2010/ap214_product_structure_extraction.test.js +28 -0
- package/compiled/src/AP214E3_2010/ap214_trim_turn_selection.test.d.ts +2 -0
- package/compiled/src/AP214E3_2010/ap214_trim_turn_selection.test.d.ts.map +1 -0
- package/compiled/src/AP214E3_2010/ap214_trim_turn_selection.test.js +106 -0
- package/compiled/src/parsing/parsing_buffer.d.ts.map +1 -1
- package/compiled/src/parsing/parsing_buffer.js +14 -2
- package/compiled/src/parsing/parsing_buffer_real.test.d.ts +2 -0
- package/compiled/src/parsing/parsing_buffer_real.test.d.ts.map +1 -0
- package/compiled/src/parsing/parsing_buffer_real.test.js +94 -0
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -30,7 +30,7 @@ var import_node_process = require("node:process");
|
|
|
30
30
|
var readline = __toESM(require("node:readline"), 1);
|
|
31
31
|
|
|
32
32
|
// compiled/src/version/version.js
|
|
33
|
-
var versionString = "Conway v1.
|
|
33
|
+
var versionString = "Conway v1.589.1552";
|
|
34
34
|
|
|
35
35
|
// compiled/dependencies/conway-geom/interface/conway_geometry.js
|
|
36
36
|
var wasmType = "";
|
|
@@ -1401,6 +1401,7 @@ var integerParser = integer_parser_default.Instance;
|
|
|
1401
1401
|
var realParser = real_parser_default.Instance;
|
|
1402
1402
|
var hexParser = hex_parser_default.Instance;
|
|
1403
1403
|
var RADIX_LUT_SIZE = 64;
|
|
1404
|
+
var RADIX_LUT_MAX_INDEX = RADIX_LUT_SIZE - 1;
|
|
1404
1405
|
var radixLUT = new Float64Array(RADIX_LUT_SIZE);
|
|
1405
1406
|
{
|
|
1406
1407
|
let radixMultiplier = 1;
|
|
@@ -1748,12 +1749,12 @@ var ParsingBuffer = class {
|
|
|
1748
1749
|
return primary;
|
|
1749
1750
|
}
|
|
1750
1751
|
while (decimals < 0) {
|
|
1751
|
-
const radixLutEntry = Math.min(-decimals,
|
|
1752
|
+
const radixLutEntry = Math.min(-decimals, RADIX_LUT_MAX_INDEX);
|
|
1752
1753
|
decimals += radixLutEntry;
|
|
1753
1754
|
primary /= radixLUT[radixLutEntry];
|
|
1754
1755
|
}
|
|
1755
1756
|
while (decimals > 0) {
|
|
1756
|
-
const radixLutEntry = Math.min(decimals,
|
|
1757
|
+
const radixLutEntry = Math.min(decimals, RADIX_LUT_MAX_INDEX);
|
|
1757
1758
|
decimals -= radixLutEntry;
|
|
1758
1759
|
primary *= radixLUT[radixLutEntry];
|
|
1759
1760
|
}
|