graphology-indices
Advanced tools
Comparing version 0.13.0 to 0.13.1
@@ -38,2 +38,3 @@ import Graph from 'graphology-types'; | ||
expensiveMove(index: number, targetCommunity: number): void; | ||
expensiveIsolate(index: number): void; | ||
zoomOut(): {[key: string]: number}; | ||
@@ -40,0 +41,0 @@ modularity(): number; |
@@ -254,2 +254,7 @@ /** | ||
UndirectedLouvainIndex.prototype.expensiveIsolate = function(i) { | ||
var degree = this.computeNodeDegree(i); | ||
this.isolate(i, degree); | ||
}; | ||
UndirectedLouvainIndex.prototype.expensiveMove = function(i, ci) { | ||
@@ -256,0 +261,0 @@ var degree = this.computeNodeDegree(i); |
{ | ||
"name": "graphology-indices", | ||
"version": "0.13.0", | ||
"version": "0.13.1", | ||
"description": "Miscellaneous indices for graphology.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
40918
1124