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.generation.price_network
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

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