fslaborg / Graphoscope

A pragmatic approach to network science.
http://fslab.org/Graphoscope/
MIT License
14 stars 6 forks source link

Barabási-Albert model doesn't appear to work #46

Open HarryMcCarney opened 1 year ago

HarryMcCarney commented 1 year ago

I have tried it for small graphs but it never seems to finish.

#r "nuget: Graphoscope, 0.2.0"
open Graphoscope.RandomModels
open Graphoscope
open FGraph

let N = 10
let edgesPerIteration = 2
let myBarabasiAlbert = BarabasiAlbert.initFGraph  N edgesPerIteration id id (fun x -> 1.0) FGraph.empty

Do you have sample which works?

thanks