Open andreamusso96 opened 1 year ago
This is NOT the official repository of graph-tool! It's a clone someone made over 9 years ago!
The actual repository is here: https://git.skewed.de/count0/graph-tool
If you want the developers to actually see your issues, please post there!
When using "real-exponential" weight in the BlockState class there is an inconsistency between the source code and documentation.
The documentation states that for the "real-exponential" or "discrete-poisson" weights the parameter lists is "r", "theta". Here is the exact sentence in the documentation:
However, if one calls BlockState feeding "rec_params=[{"r":1, "theta": 2}" a bug occurs. Namely,
The reason behind this bug can be found in the source code. The relevant source code reads:
Hence, the parameters "r" and "theta" are actually called "alpha" and "beta" in the source code.