Wrong formula in price networks?
Hello, If I compare the implementation for the probability in the graph/generation/graph_price.hh which is (can be found in multiple places) p = pow(Deg()(w, g) + c, gamma); With what is written in the documentation https://graph-tool.skewed.de/static/doc/generation.html#graph_tool.generatio... I wonder whether it should actually be (the constant outside the power) or is the documentation wrong? p = pow(Deg()(w, g), gamma) + c; Greetings Feelx234 -- Sent from: https://nabble.skewed.de/
Am 23.07.20 um 11:17 schrieb Feelx234:
Hello,
If I compare the implementation for the probability in the graph/generation/graph_price.hh which is (can be found in multiple places) p = pow(Deg()(w, g) + c, gamma);
With what is written in the documentation https://graph-tool.skewed.de/static/doc/generation.html#graph_tool.generatio... I wonder whether it should actually be (the constant outside the power) or is the documentation wrong? p = pow(Deg()(w, g), gamma) + c;
Indeed there is a discrepancy! I believe the most appropriate version is the one with the constant outside the power, as written in the documentation. I'll fix the code shortly. Best, Tiago -- Tiago de Paula Peixoto <tiago@skewed.de>
participants (2)
-
Feelx234 -
Tiago de Paula Peixoto