Skip to content
Snippets Groups Projects
Commit ba89f378 authored by Vincent Texier's avatar Vincent Texier
Browse files

Fix bad wallet values in referential with zero sum

parent 6ddec0cf
No related branches found
No related tags found
No related merge requests found
......@@ -32,12 +32,12 @@ def relative(units, community):
def quantitative_zerosum(units, community):
median = community.monetary_mass / community.nb_members
median = community.get_ud_block(1)['monetaryMass'] / community.nb_members
return units - median
def relative_zerosum(units, community):
median = community.monetary_mass / community.nb_members
median = community.get_ud_block(1)['monetaryMass'] / community.nb_members
ud = community.dividend
relative_value = units / float(ud)
relative_median = median / ud
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment