@mapequation/infomap 1.9.0 → 2.0.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,29 @@
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.0.0](https://github.com/mapequation/infomap/compare/v1.9.0...v2.0.0) (2022-01-13)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * Removes --input-format.
11
+ * Removes --include-self-links.
12
+
13
+ ### Features
14
+
15
+ * Entropy bias correction ([#258](https://github.com/mapequation/infomap/issues/258)) ([8ea235c](https://github.com/mapequation/infomap/commit/8ea235cf9159fc1a672a0470798ab7e443590fde))
16
+ * Regularized map equation ([#181](https://github.com/mapequation/infomap/issues/181)) ([0673000](https://github.com/mapequation/infomap/commit/06730005329acb4ba781d647e7009d4ff2510ae7)), closes [#256](https://github.com/mapequation/infomap/issues/256)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * Add new feature flags to python and js api ([48245a7](https://github.com/mapequation/infomap/commit/48245a795f87675b62b94b2f8bd8251b71e5f62e))
22
+ * Include self links by default ([#255](https://github.com/mapequation/infomap/issues/255)) ([1f68940](https://github.com/mapequation/infomap/commit/1f68940a90633405f696efa93471ca8cbb25f14c))
23
+ * **example:** Fix building c++ examples ([0d5c063](https://github.com/mapequation/infomap/commit/0d5c0639cb76b9b275388c1a45873496f675aeea)), closes [#252](https://github.com/mapequation/infomap/issues/252)
24
+
25
+
26
+ * Remove superfluous --input-format flag ([2dd77c4](https://github.com/mapequation/infomap/commit/2dd77c4689c67485454478d739c22c8deb44eda0))
27
+
5
28
  ## [1.9.0](https://github.com/mapequation/infomap/compare/v1.8.0...v1.9.0) (2021-11-17)
6
29
 
7
30
 
package/arguments.d.ts CHANGED
@@ -2,11 +2,10 @@ declare type OutputFormats = "clu" | "tree" | "ftree" | "newick" | "json" | "csv
2
2
  export interface Arguments extends Partial<{
3
3
  clusterData: string;
4
4
  noInfomap: boolean;
5
- inputFormat: "pajek" | "link-list" | "bipartite" | "multilayer" | "states";
6
5
  skipAdjustBipartiteFlow: boolean;
7
6
  bipartiteTeleportation: boolean;
8
7
  weightThreshold: number;
9
- includeSelfLinks: boolean;
8
+ noSelfLinks: boolean;
10
9
  nodeLimit: number;
11
10
  assignToNeighbouringModule: boolean;
12
11
  metaData: string;
@@ -28,6 +27,10 @@ export interface Arguments extends Partial<{
28
27
  useNodeWeightsAsFlow: boolean;
29
28
  toNodes: boolean;
30
29
  teleportationProbability: number;
30
+ regularized: boolean;
31
+ regularizationStrength: number;
32
+ entropyCorrected: boolean;
33
+ entropyCorrectionStrength: number;
31
34
  markovTime: number;
32
35
  preferredNumberOfModules: number;
33
36
  multilayerRelaxRate: number;