Example #1
0
 private void CheckQuorum(NestManager nest)
 {
     //check the quorum of this nest until quorum is met once.
     if (IsQuorumReached())
     {
         perceivedQuorum = quorumThreshold;
     }
     else
     {
         perceivedQuorum = RandomGenerator.Instance.NormalRandom(nest.GetQuorum(), Other.v[Other.QuorumAssessNoise]);
     }
 }