Post
Topic
Board Meta
Re: How does the trust system work?
by
--Encrypted--
on 21/02/2016, 19:05:29 UTC
basically it is the total score calculated based on the 2nd and 3rd (there's no 4th. theymos removed it.) scores. here's the full algorithm:
Code:
if there are no negative ratings
score = 0
for each rating, oldest to newest
if this rater has already been counted
continue
score += min(10, round_up(months since rating))
else
score = unique_positive - 2^(unique_negative)
if score >= 0
start_time = time of first negative
score = unique_positive since start_time - unique_negative since start_time
if(score < 0)
return ??? (orange)

move score to range [-9999,9999]
return score

taken from this thread > https://bitcointalk.org/index.php?topic=1066857.0