--- a/src/lte/model/lte-enb-rrc.cc Tue Dec 04 13:16:20 2012 +0100
+++ b/src/lte/model/lte-enb-rrc.cc Tue Dec 04 19:22:26 2012 +0100
@@ -1545,7 +1545,7 @@
std::set<uint16_t>::reverse_iterator rit = m_ueSrsConfigurationIndexSet.rbegin ();
NS_ASSERT (rit != m_ueSrsConfigurationIndexSet.rend ());
NS_LOG_DEBUG (this << " lower bound " << (*rit) << " of " << g_srsCiHigh[m_srsCurrentPeriodicityId]);
- if ((*rit) <= g_srsCiHigh[m_srsCurrentPeriodicityId])
+ if ((*rit) < g_srsCiHigh[m_srsCurrentPeriodicityId])
{
// got it from the upper bound
m_lastAllocatedConfigurationIndex = (*rit) + 1;