@thi.ng/adjacency 2.5.0 → 2.5.1
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 +4 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -177,6 +177,10 @@ graph.addEdge(4, 5);
|
|
|
177
177
|
graph.removeEdge(0, 1);
|
|
178
178
|
```
|
|
179
179
|
|
|
180
|
+
GraphViz visualization of the above example graph:
|
|
181
|
+
|
|
182
|
+

|
|
183
|
+
|
|
180
184
|
## Authors
|
|
181
185
|
|
|
182
186
|
- [Karsten Schmidt](https://thi.ng) (Main author)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/adjacency",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.1",
|
|
4
4
|
"description": "Sparse & bitwise adjacency matrices, lists and selected traversal algorithms for directed & undirected graphs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,20 +37,20 @@
|
|
|
37
37
|
"test": "testament test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@thi.ng/api": "^8.9.
|
|
41
|
-
"@thi.ng/arrays": "^2.6.
|
|
42
|
-
"@thi.ng/bitfield": "^2.3.
|
|
43
|
-
"@thi.ng/dcons": "^3.2.
|
|
44
|
-
"@thi.ng/errors": "^2.3.
|
|
45
|
-
"@thi.ng/sparse": "^0.3.
|
|
40
|
+
"@thi.ng/api": "^8.9.6",
|
|
41
|
+
"@thi.ng/arrays": "^2.6.4",
|
|
42
|
+
"@thi.ng/bitfield": "^2.3.1",
|
|
43
|
+
"@thi.ng/dcons": "^3.2.65",
|
|
44
|
+
"@thi.ng/errors": "^2.3.6",
|
|
45
|
+
"@thi.ng/sparse": "^0.3.70"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@microsoft/api-extractor": "^7.
|
|
49
|
-
"@thi.ng/testament": "^0.3.
|
|
50
|
-
"@thi.ng/vectors": "^7.7.
|
|
51
|
-
"rimraf": "^5.0.
|
|
48
|
+
"@microsoft/api-extractor": "^7.38.0",
|
|
49
|
+
"@thi.ng/testament": "^0.3.24",
|
|
50
|
+
"@thi.ng/vectors": "^7.7.20",
|
|
51
|
+
"rimraf": "^5.0.5",
|
|
52
52
|
"tools": "^0.0.1",
|
|
53
|
-
"typedoc": "^0.25.
|
|
53
|
+
"typedoc": "^0.25.2",
|
|
54
54
|
"typescript": "^5.2.2"
|
|
55
55
|
},
|
|
56
56
|
"keywords": [
|
|
@@ -125,5 +125,5 @@
|
|
|
125
125
|
],
|
|
126
126
|
"year": 2018
|
|
127
127
|
},
|
|
128
|
-
"gitHead": "
|
|
128
|
+
"gitHead": "8d46d9326a9f9b81d65e7e274446f5964f9942ac\n"
|
|
129
129
|
}
|