Skip to content

Commit cfd7040

Browse files
committed
Add graph generators from time series.
1 parent a24960a commit cfd7040

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ Go-Network is a Go package for the creation, manipulation, and study of the stru
2626
- [Erdős-Rényi]()
2727
- [Watts-Strogatz]()
2828

29+
- From time series
30+
- [TBD]()
31+
2932
#### Supported graph sampling algorithms
3033
- [Random Node]()
3134
- [Random Degree Node]()

model/generator_random.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ func BarabasiAlbertRandomGraph(numberOfNodes int, numberOfEdges int) (g *Undirec
9898
})
9999
}
100100
}
101-
101+
102102
return g
103103
}
104104

0 commit comments

Comments
 (0)