changed RsGenExchange strategy to use a threshold on reputation when validating posts

This commit is contained in:
csoler 2015-10-25 23:45:33 -04:00
parent e60ac99994
commit b009c1135f
5 changed files with 75 additions and 60 deletions

View file

@ -31,6 +31,9 @@
class RsReputations
{
public:
static const float REPUTATION_THRESHOLD_ANTI_SPAM = 1.2f ;
static const float REPUTATION_THRESHOLD_DEFAULT = 1.0f ;
// This is the interface file for the reputation system
//
enum Opinion { OPINION_NEGATIVE = 0, OPINION_NEUTRAL = 1, OPINION_POSITIVE = 2 } ;