@thi.ng/cellular 0.2.97 → 0.2.99
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 +12 -12
package/1d.d.ts
CHANGED
|
@@ -121,7 +121,7 @@ export declare const WOLFRAM7: Kernel;
|
|
|
121
121
|
* supported. The same limit applies to the number of CA configs given.
|
|
122
122
|
*
|
|
123
123
|
* @example
|
|
124
|
-
* ```ts
|
|
124
|
+
* ```ts tangle:../export/wolfram.ts
|
|
125
125
|
* import { MultiCA1D } from "@thi.ng/cellular";
|
|
126
126
|
*
|
|
127
127
|
* // classic Wolfram Rule 110 automata
|
|
@@ -133,7 +133,7 @@ export declare const WOLFRAM7: Kernel;
|
|
|
133
133
|
* reset: false
|
|
134
134
|
* }],
|
|
135
135
|
* 256
|
|
136
|
-
* )
|
|
136
|
+
* );
|
|
137
137
|
* ```
|
|
138
138
|
*/
|
|
139
139
|
export declare class MultiCA1D implements IClear {
|
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.99",
|
|
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,19 +36,19 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.9.
|
|
40
|
-
"@thi.ng/arrays": "^2.8.
|
|
41
|
-
"@thi.ng/checks": "^3.5.
|
|
42
|
-
"@thi.ng/errors": "^2.
|
|
43
|
-
"@thi.ng/random": "^3.6.
|
|
44
|
-
"@thi.ng/transducers": "^8.9.
|
|
39
|
+
"@thi.ng/api": "^8.9.30",
|
|
40
|
+
"@thi.ng/arrays": "^2.8.9",
|
|
41
|
+
"@thi.ng/checks": "^3.5.3",
|
|
42
|
+
"@thi.ng/errors": "^2.5.1",
|
|
43
|
+
"@thi.ng/random": "^3.6.38",
|
|
44
|
+
"@thi.ng/transducers": "^8.9.13"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.
|
|
48
|
-
"esbuild": "^0.20.
|
|
47
|
+
"@microsoft/api-extractor": "^7.42.3",
|
|
48
|
+
"esbuild": "^0.20.1",
|
|
49
49
|
"rimraf": "^5.0.5",
|
|
50
|
-
"typedoc": "^0.25.
|
|
51
|
-
"typescript": "^5.
|
|
50
|
+
"typedoc": "^0.25.12",
|
|
51
|
+
"typescript": "^5.4.2"
|
|
52
52
|
},
|
|
53
53
|
"keywords": [
|
|
54
54
|
"1d",
|
|
@@ -94,5 +94,5 @@
|
|
|
94
94
|
],
|
|
95
95
|
"year": 2022
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "bc0f3cb07d6f1cab6dbdc5ff57428f5484e711bb\n"
|
|
98
98
|
}
|