зеркало из https://github.com/microsoft/topologic.git
Коммит
ff0dab0163
|
@ -1,4 +1,6 @@
|
|||
# Release Notes
|
||||
## 0.1.8
|
||||
- Fix an issue with sorting non integer node ids when calculating omnibus embeddings
|
||||
## 0.1.7
|
||||
- Use the union graph largest connected component strategy to calculate the omnibus embedding
|
||||
## 0.1.6
|
||||
|
|
|
@ -231,7 +231,7 @@ def _get_adjacency_matrices(graphs):
|
|||
for node in sorted_nodes:
|
||||
labels.add(node)
|
||||
|
||||
return list(labels), matrices
|
||||
return sorted(list(labels)), matrices
|
||||
|
||||
|
||||
def _get_laplacian_matrices(graphs):
|
||||
|
|
|
@ -10,7 +10,7 @@ __all__: List[str] = ["version", "name"]
|
|||
name = "topologic"
|
||||
|
||||
# manually updated
|
||||
__semver = "0.1.7"
|
||||
__semver = "0.1.8"
|
||||
# full version (may be same as __semver on release)
|
||||
__version_file = "version.txt"
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче