@mapequation/infomap 2.6.0 → 2.7.0

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 CHANGED
@@ -2,6 +2,27 @@
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.0](https://github.com/mapequation/infomap/compare/v2.6.1...v2.7.0) (2023-04-04)
6
+
7
+
8
+ ### Features
9
+
10
+ * Add flow model "precomputed" ([407dbe9](https://github.com/mapequation/infomap/commit/407dbe9592641bea7a4cac292a7d25df308644ca))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * Do not add links with zero weight ([cc61b61](https://github.com/mapequation/infomap/commit/cc61b61db228e8a0b433d5bc55f0fedc540e1c0d)), closes [#324](https://github.com/mapequation/infomap/issues/324)
16
+ * **python:** Typo in assign_to_neighbouring_module ([c644e80](https://github.com/mapequation/infomap/commit/c644e80d1717cc28c6247b470e4f1c6eb2d4a420))
17
+
18
+ ### [2.6.1](https://github.com/mapequation/infomap/compare/v2.6.0...v2.6.1) (2022-10-31)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * Scale variable Markov time logarithmic as default ([#320](https://github.com/mapequation/infomap/issues/320)) ([3f40134](https://github.com/mapequation/infomap/commit/3f40134b0346586b9d051c3a2996a77500ba10d6))
24
+ * Set num trials to 1 if no infomap ([be60a09](https://github.com/mapequation/infomap/commit/be60a09c785d8bee9ac885ebc92473494db368c1))
25
+
5
26
  ## [2.6.0](https://github.com/mapequation/infomap/compare/v2.5.0...v2.6.0) (2022-08-09)
6
27
 
7
28
 
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 Eriksson, Martin Rosvall
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
@@ -141,7 +141,7 @@ please add them to `GitHub issues`_.
141
141
  Authors
142
142
  -------
143
143
 
144
- Daniel Edler, Anton Eriksson, Martin Rosvall
144
+ Daniel Edler, Anton Holmgren, Martin Rosvall
145
145
 
146
146
  For contact information, see `mapequation.org/about.html`_.
147
147
 
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;
@@ -36,7 +36,7 @@ export interface Arguments extends Partial<{
36
36
  entropyCorrectionStrength: number;
37
37
  markovTime: number;
38
38
  variableMarkovTime: boolean;
39
- variableMarkovTimeStrength: number;
39
+ variableMarkovDamping: number;
40
40
  preferredNumberOfModules: number;
41
41
  multilayerRelaxRate: number;
42
42
  multilayerRelaxLimit: number;