lte: Fix typos
This commit is contained in:
@@ -1183,7 +1183,7 @@ users having the same token generation rate, traffic rate and token pool size, u
|
||||
has more opportunity to borrow tokens from bank. In addition, TBFQ can police the traffic by setting the token
|
||||
generation rate to limit the throughput. Additionally, TBFQ also maintains following three parameters for each flow:
|
||||
|
||||
* Debt limit :math:`d_{i}`: if :math:`E_{i}` belows this threshold, user i cannot further borrow tokens from bank. This is for
|
||||
* Debt limit :math:`d_{i}`: if :math:`E_{i}` is below this threshold, user i cannot further borrow tokens from bank. This is for
|
||||
preventing malicious UE to borrow too much tokens.
|
||||
* Credit limit :math:`c_{i}`: the maximum number of tokens UE i can borrow from the bank in one time.
|
||||
* Credit threshold :math:`C`: once :math:`E_{i}` reaches debt limit, UE i must store :math:`C` tokens to bank in order to further
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace ns3
|
||||
* @brief Test case that for testing the deactivation of the bearer
|
||||
* functionality. The test consist in deactivating the bearer and checking
|
||||
* if some traffic will appear afterwards on the given bearer. If some traffic
|
||||
* is detected the test will fail. Firs the de-activation is performed by
|
||||
* is detected the test will fail. First the de-activation is performed by
|
||||
* using Simulator::Schedule() method which will initiate bearer de-activation
|
||||
* after deActivateTime that is specified as the test parameter. Additionally,
|
||||
* test instantiate de-activation in sequence.
|
||||
|
||||
@@ -20,7 +20,7 @@ using namespace ns3;
|
||||
* @ingroup lte-test
|
||||
*
|
||||
* @brief Test suite for the interference test when using different
|
||||
* frequency reuse algorithms.Check if the interfence values correspond to
|
||||
* frequency reuse algorithms.Check if the interference values correspond to
|
||||
* theoretical values.
|
||||
*/
|
||||
class LteInterferenceFrTestSuite : public TestSuite
|
||||
@@ -33,7 +33,7 @@ class LteInterferenceFrTestSuite : public TestSuite
|
||||
* @ingroup lte-test
|
||||
*
|
||||
* @brief Lte interference test when using hard frequency reuse algorithm. Check
|
||||
* if the interfence values correspond to theoretical values.
|
||||
* if the interference values correspond to theoretical values.
|
||||
*/
|
||||
class LteInterferenceHardFrTestCase : public TestCase
|
||||
{
|
||||
|
||||
@@ -159,3 +159,8 @@ static ns3::GlobalValue g_rate("VRCrate",
|
||||
|
||||
./doc/manual/source/working-with-docker.rst
|
||||
067a8b748816715d93ede9099132d943c04b13fcc23b3b8a7e21d23c1096cc2a
|
||||
|
||||
./src/lte/model/cqa-ff-mac-scheduler.cc
|
||||
std::map<LteFlowId_t, int> UEtoHOL;
|
||||
UEtoHOL.insert(std::pair<LteFlowId_t, int>(itLogicalChannels->first, delay));
|
||||
int hol = UEtoHOL.find(flowId)->second;
|
||||
|
||||
Reference in New Issue
Block a user