@thi.ng/cellular 0.2.129 → 0.2.130
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/1d.d.ts +2 -2
- package/CHANGELOG.md +1 -1
- package/package.json +11 -11
package/1d.d.ts
CHANGED
|
@@ -146,8 +146,8 @@ export declare class MultiCA1D implements IClear {
|
|
|
146
146
|
gens: Uint8Array[];
|
|
147
147
|
prob: Float32Array;
|
|
148
148
|
constructor(configs: CASpec1D[], width: number, wrap?: boolean);
|
|
149
|
-
get current(): Uint8Array
|
|
150
|
-
get previous(): Uint8Array
|
|
149
|
+
get current(): Uint8Array<ArrayBufferLike>;
|
|
150
|
+
get previous(): Uint8Array<ArrayBufferLike>;
|
|
151
151
|
clear(): void;
|
|
152
152
|
clearTarget(target: Target): void;
|
|
153
153
|
resize(width: number): void;
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/cellular",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.130",
|
|
4
4
|
"description": "Highly customizable 1D cellular automata, shared env, multiple rules, arbitrary sized/shaped neighborhoods, short term memory, cell states etc.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.11.
|
|
40
|
-
"@thi.ng/arrays": "^2.10.
|
|
41
|
-
"@thi.ng/checks": "^3.6.
|
|
42
|
-
"@thi.ng/errors": "^2.5.
|
|
43
|
-
"@thi.ng/random": "^4.1.
|
|
44
|
-
"@thi.ng/transducers": "^9.2.
|
|
39
|
+
"@thi.ng/api": "^8.11.13",
|
|
40
|
+
"@thi.ng/arrays": "^2.10.6",
|
|
41
|
+
"@thi.ng/checks": "^3.6.15",
|
|
42
|
+
"@thi.ng/errors": "^2.5.19",
|
|
43
|
+
"@thi.ng/random": "^4.1.4",
|
|
44
|
+
"@thi.ng/transducers": "^9.2.9"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.
|
|
47
|
+
"@microsoft/api-extractor": "^7.48.0",
|
|
48
48
|
"esbuild": "^0.24.0",
|
|
49
|
-
"typedoc": "^0.26.
|
|
50
|
-
"typescript": "^5.
|
|
49
|
+
"typedoc": "^0.26.11",
|
|
50
|
+
"typescript": "^5.7.2"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"1d",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"year": 2022,
|
|
98
98
|
"screenshot": "cellular/hero.png"
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "85e2f0935b58bde5d165fbe754fafec5da0b731e\n"
|
|
101
101
|
}
|