@mapequation/infomap 2.6.1 → 2.7.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 +20 -0
- package/README.md +1 -1
- package/README.rst +1 -1
- package/arguments.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.7.1](https://github.com/mapequation/infomap/compare/v2.7.0...v2.7.1) (2023-04-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* Allow precomputed flow for state networks ([ab7c5b5](https://github.com/mapequation/infomap/commit/ab7c5b55b294a3e256ed53f903e888efc08f1ae6))
|
|
11
|
+
|
|
12
|
+
## [2.7.0](https://github.com/mapequation/infomap/compare/v2.6.1...v2.7.0) (2023-04-04)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* Add flow model "precomputed" ([407dbe9](https://github.com/mapequation/infomap/commit/407dbe9592641bea7a4cac292a7d25df308644ca))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* Do not add links with zero weight ([cc61b61](https://github.com/mapequation/infomap/commit/cc61b61db228e8a0b433d5bc55f0fedc540e1c0d)), closes [#324](https://github.com/mapequation/infomap/issues/324)
|
|
23
|
+
* **python:** Typo in assign_to_neighbouring_module ([c644e80](https://github.com/mapequation/infomap/commit/c644e80d1717cc28c6247b470e4f1c6eb2d4a420))
|
|
24
|
+
|
|
5
25
|
### [2.6.1](https://github.com/mapequation/infomap/compare/v2.6.0...v2.6.1) (2022-10-31)
|
|
6
26
|
|
|
7
27
|
|
package/README.md
CHANGED
|
@@ -77,7 +77,7 @@ If you have any questions, suggestions or issues regarding the software, please
|
|
|
77
77
|
|
|
78
78
|
## Authors
|
|
79
79
|
|
|
80
|
-
Daniel Edler, Anton
|
|
80
|
+
Daniel Edler, Anton Holmgren, Martin Rosvall
|
|
81
81
|
|
|
82
82
|
For contact information, see [mapequation.org/about.html](//www.mapequation.org/about.html).
|
|
83
83
|
|
package/README.rst
CHANGED
package/arguments.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export interface Arguments extends Partial<{
|
|
|
24
24
|
hideBipartiteNodes: boolean;
|
|
25
25
|
printAllTrials: boolean;
|
|
26
26
|
twoLevel: boolean;
|
|
27
|
-
flowModel: "undirected" | "directed" | "undirdir" | "outdirdir" | "rawdir";
|
|
27
|
+
flowModel: "undirected" | "directed" | "undirdir" | "outdirdir" | "rawdir" | "precomputed";
|
|
28
28
|
directed: boolean;
|
|
29
29
|
recordedTeleportation: boolean;
|
|
30
30
|
useNodeWeightsAsFlow: boolean;
|