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.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;

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 <ti...@skewed.de>

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
graph-tool mailing list
graph-tool@skewed.de
https://lists.skewed.de/mailman/listinfo/graph-tool

Reply via email to