@thi.ng/gp 0.4.18 → 0.4.20
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/CHANGELOG.md +1 -1
- package/README.md +5 -5
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
|
|
3
|
-
# 
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@thi.ng/gp)
|
|
6
6
|

|
|
@@ -10,8 +10,8 @@ This project is part of the
|
|
|
10
10
|
[@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo.
|
|
11
11
|
|
|
12
12
|
- [About](#about)
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
- [Status](#status)
|
|
14
|
+
- [Related packages](#related-packages)
|
|
15
15
|
- [Blog posts](#blog-posts)
|
|
16
16
|
- [Installation](#installation)
|
|
17
17
|
- [Dependencies](#dependencies)
|
|
@@ -45,13 +45,13 @@ References:
|
|
|
45
45
|
- [Evolutionary failures (blog post)](https://medium.com/@thi.ng/evolutionary-failures-part-1-54522c69be37)
|
|
46
46
|
- [Multi Expression Programming (Oltean, Dumitrescu)](https://www.mepx.org/oltean_mep.pdf)
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
## Status
|
|
49
49
|
|
|
50
50
|
**ALPHA** - bleeding edge / work-in-progress
|
|
51
51
|
|
|
52
52
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Bgp%5D+in%3Atitle)
|
|
53
53
|
|
|
54
|
-
|
|
54
|
+
## Related packages
|
|
55
55
|
|
|
56
56
|
- [@thi.ng/defmulti](https://github.com/thi-ng/umbrella/tree/develop/packages/defmulti) - Dynamic, extensible multiple dispatch via user supplied dispatch function.
|
|
57
57
|
- [@thi.ng/pointfree](https://github.com/thi-ng/umbrella/tree/develop/packages/pointfree) - Pointfree functional composition / Forth style stack execution engine
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/gp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.20",
|
|
4
4
|
"description": "Genetic programming helpers & strategies (tree based & multi-expression programming)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,20 +34,20 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/errors": "^2.
|
|
39
|
-
"@thi.ng/math": "^5.3.
|
|
40
|
-
"@thi.ng/random": "^3.3.
|
|
41
|
-
"@thi.ng/transducers": "^8.3.
|
|
42
|
-
"@thi.ng/zipper": "^2.1.
|
|
37
|
+
"@thi.ng/api": "^8.4.2",
|
|
38
|
+
"@thi.ng/errors": "^2.2.0",
|
|
39
|
+
"@thi.ng/math": "^5.3.9",
|
|
40
|
+
"@thi.ng/random": "^3.3.8",
|
|
41
|
+
"@thi.ng/transducers": "^8.3.15",
|
|
42
|
+
"@thi.ng/zipper": "^2.1.16"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@microsoft/api-extractor": "^7.
|
|
46
|
-
"@thi.ng/testament": "^0.
|
|
45
|
+
"@microsoft/api-extractor": "^7.31.1",
|
|
46
|
+
"@thi.ng/testament": "^0.3.0",
|
|
47
47
|
"rimraf": "^3.0.2",
|
|
48
48
|
"tools": "^0.0.1",
|
|
49
49
|
"typedoc": "^0.22.17",
|
|
50
|
-
"typescript": "^4.
|
|
50
|
+
"typescript": "^4.8.3"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"agent",
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"status": "alpha",
|
|
109
109
|
"year": 2019
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "f4c59114f2d2dfafa9014626038a9ec5242b0606\n"
|
|
112
112
|
}
|