remove the debugging to confirm that distance attenuation is working

This commit is contained in:
Stephen Birarda 2013-04-26 17:11:51 -07:00
parent 5442362b3a
commit 14012ee44b

View file

@ -145,8 +145,6 @@ void *sendBuffer(void *args)
float minCoefficient = std::min(1.0f,
powf(0.5, (logf(DISTANCE_RATIO * distanceToAgent) / logf(3)) - 1));
printf("The distance between the two agents is %f\n", distanceToAgent);
printf("The DC between agent %d and %d is %f\n", agent->getAgentId(), otherAgent->getAgentId(), minCoefficient);
distanceCoeffs[lowAgentIndex][highAgentIndex] = minCoefficient;
}