Skip to content

Commit f3548f2

Browse files
InterdisciplinaryPhysicsTeampitmonticoneClaudMor
authored
Implement faster graph realization algorithms (#41)
* Implement havel-akimi (currently fails) Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Create abstractmultilayerugraph_development.jl Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Implement Havel-Hakimi Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Comment the Havel Hakimi graph generator Co-Authored-By: Claudio Moroni <[email protected]> Co-Authored-By: Pietro Monticone <[email protected]> * Update utilities.jl Co-Authored-By: Claudio Moroni <[email protected]> Co-Authored-By: Pietro Monticone <[email protected]> * Update utilities.jl Co-Authored-By: Claudio Moroni <[email protected]> Co-Authored-By: Pietro Monticone <[email protected]> * Implement Kleitman-Wang algorithm (still broken) Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Update Project.toml * Implement kleitman-wang (still broken) Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Fix kleitman-wang Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Add better description to kleitman-wang algorithm Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Integrate havel-hakimi and kleitman-wang with the configuration model-like constructors Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Temporarily enable tests on graph_realization branch Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Update index.md and README.md Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Update utilities.jl * Comment old graph realization methods Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> * Update CI.yml Co-Authored-By: Pietro Monticone <[email protected]> Co-Authored-By: Claudio Moroni <[email protected]> Co-authored-by: Pietro Monticone <[email protected]> Co-authored-by: Claudio Moroni <[email protected]>
1 parent 0710e3f commit f3548f2

11 files changed

+519
-33
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ on:
33
push:
44
branches:
55
- main
6-
#- dev
76
tags: '*'
87
pull_request:
98
concurrency:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ SimpleTraits = "0.9"
3232
SimpleValueGraphs = "0.4"
3333
SimpleWeightedGraphs = "1.2"
3434
TensorOperations = "3.2"
35-
julia = "1.8"
35+
julia = "1.8"

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ In the package documentation you can find a [tutorial](https://juliagraphs.org/M
3939

4040
## Future Developments
4141

42-
- [ ] [Implement faster graph realization algorithms](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/32);
4342
- [ ] [Implement more general configuration models / graph generators](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/33);
4443
- [ ] [Implement graph of layers](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/34);
4544
- [ ] [Implement projected monoplex and overlay graphs](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/35);

docs/src/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -852,7 +852,6 @@ Read a complete list of analytical methods exclusive to multilayer graphs in the
852852

853853
### Future Developments
854854

855-
- [Implement faster graph realization algorithms](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/32);
856855
- [Implement more general configuration models / graph generators](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/33);
857856
- [Implement graph of layers](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/34);
858857
- [Implement projected monoplex and overlay graphs](https://github.com/JuliaGraphs/MultilayerGraphs.jl/issues/35);

0 commit comments

Comments
 (0)