fix some unused variable warnings in optimized mode

This commit is contained in:
Tom Henderson
2012-05-21 07:25:00 -07:00
parent 2285b19d17
commit b177ef61cf
2 changed files with 6 additions and 3 deletions

View File

@@ -46,6 +46,7 @@
#include <ns3/config.h>
#include <ns3/boolean.h>
#include <ns3/enum.h>
#include <ns3/unused.h>
NS_LOG_COMPONENT_DEFINE ("LenaTestPhyErrorModel");
@@ -244,7 +245,10 @@ LenaPhyErrorModelTestCase::DoRun (void)
int lambda = (double)dlDataRxed.at (i) / m_tbSize;
double ber = 2.0 - ((double)dlDataRxed.at (i)/txed);
double np = n-n*m_berRef;
NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes rxed " << (double)dlDataRxed.at (i) << " txed " << txed << " BER " << ber << " Err " << fabs (m_berRef - ber) << " lambda " << lambda << " np " << np << " difference " << abs(lambda - np) << " quantile " << m_bernQuantile);
NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes rxed " << (double)dlDataRxed.at (i) << " txed " << txed
<< " BER " << ber << " Err " << fabs (m_berRef - ber) << " lambda " << lambda
<< " np " << np << " difference " << abs(lambda - np) << " quantile " << m_bernQuantile);
NS_UNUSED (ber);
// the quantiles are evaluated offline according to a Bernoulli
// ditribution with n equal to the number of packet sent and p equal
// to the BER (see /reference/bernuolliDistribution.m for details)

View File

@@ -316,9 +316,8 @@ LenaRrFfMacSchedulerTestCase::DoRun (void)
uint64_t imsi = ueDevs.Get (i)->GetObject<LteUeNetDevice> ()->GetImsi ();
// get the lcId
uint8_t lcId = ueDevs.Get (i)->GetObject<LteUeNetDevice> ()->GetRrc ()->GetLcIdVector ().at (0);
double txed = rlcStats->GetUlTxData (imsi, lcId);
ulDataRxed.push_back (rlcStats->GetUlRxData (imsi, lcId));
NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes txed " << (double)ulDataRxed.at (i) << " thr " << (double)ulDataRxed.at (i) / simulationTime << " ref " << m_thrRefUl << " txed " << txed / simulationTime);
NS_LOG_INFO ("\tUser " << i << " imsi " << imsi << " bytes txed " << (double)ulDataRxed.at (i) << " thr " << (double)ulDataRxed.at (i) / simulationTime << " ref " << m_thrRefUl << " txed " << rlcStats->GetUlTxData (imsi, lcId) / simulationTime);
NS_TEST_ASSERT_MSG_EQ_TOL ((double)ulDataRxed.at (i) / simulationTime, m_thrRefUl, m_thrRefUl * tolerance, " Unfair Throughput!");
}