32 #include "ns3/double.h"
49 .SetGroupName (
"Internet")
50 .AddAttribute (
"InitialEstimation",
51 "Initial RTT estimate",
89 m_initialEstimatedRtt (c.m_initialEstimatedRtt),
90 m_estimatedRtt (c.m_estimatedRtt),
91 m_estimatedVariation (c.m_estimatedVariation),
92 m_nSamples (c.m_nSamples)
134 .SetGroupName (
"Internet")
136 .AddAttribute (
"Alpha",
137 "Gain used in estimating the RTT, must be 0 <= alpha <= 1",
140 MakeDoubleChecker<double> (0, 1))
141 .AddAttribute (
"Beta",
142 "Gain used in estimating the RTT variation, must be 0 <= beta <= 1",
145 MakeDoubleChecker<double> (0, 1))
156 :
RttEstimator (c), m_alpha (c.m_alpha), m_beta (c.m_beta)
250 if (rttShift && variationShift)
263 NS_LOG_DEBUG (
"(first sample) m_estimatedVariation += " << m);
272 return CopyObject<RttMeanDeviation> (
this);
List of Attribute name, value and checker triples used to construct Objects.
This class can be used to hold variables of floating point type such as 'double' or 'float'.
void ConstructSelf(const AttributeConstructionList &attributes)
Complete construction of ObjectBase; invoked by derived classes.
A base class which provides memory management and object aggregation.
Smart pointer class similar to boost::intrusive_ptr.
Base class for all RTT Estimators.
Time m_initialEstimatedRtt
Initial RTT estimation.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
Time GetEstimate(void) const
gets the RTT estimate.
virtual void Reset()
Resets the estimation to its initial state.
Time m_estimatedVariation
Current estimate variation.
uint32_t m_nSamples
Number of samples.
uint32_t GetNSamples(void) const
gets the number of samples used in the estimates
Time GetVariation(void) const
Note that this is not a formal statistical variance; it has the the same units as the estimate.
Time m_estimatedRtt
Current estimate.
static TypeId GetTypeId(void)
Get the type ID.
The "Mean--Deviation" RTT estimator, as discussed by Van Jacobson.
static TypeId GetTypeId(void)
Get the type ID.
double m_beta
Filter gain for variation.
void Measurement(Time measure)
Add a new measurement to the estimator.
void Reset()
Resets the estimator.
void FloatingPointUpdate(Time m)
Method to update the rtt and variation estimates using floating point arithmetic, used when the value...
Ptr< RttEstimator > Copy() const
Copy object (including current internal state)
uint32_t CheckForReciprocalPowerOfTwo(double val) const
Utility function to check for possible conversion of a double value (0 < value < 1) to a reciprocal p...
double m_alpha
Filter gain for average.
virtual TypeId GetInstanceTypeId(void) const
Get the most derived TypeId for this Object.
void IntegerUpdate(Time m, uint32_t rttShift, uint32_t variationShift)
Method to update the rtt and variation estimates using integer arithmetic, used when the values of Al...
Simulation virtual time values and global simulation resolution.
double ToDouble(enum Unit unit) const
Get the Time value expressed in a particular unit.
double GetSeconds(void) const
Get an approximation of the time stored in this instance in the indicated unit.
static Time From(const int64x64_t &value)
Create a Time in the current unit.
static Time FromDouble(double value, enum Unit unit)
Create a Time equal to value in unit unit.
int64_t GetInteger(void) const
Get the raw time value, in the current resolution unit.
AttributeValue implementation for Time.
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
int64x64_t Abs(const int64x64_t &value)
Absolute value.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Time Seconds(double value)
Construct a Time in the indicated unit.
void(* Time)(Time oldValue, Time newValue)
TracedValue callback signature for Time.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< const AttributeChecker > MakeTimeChecker(const Time min, const Time max)
Helper to make a Time checker with bounded range.
static const double TOLERANCE
Tolerance used to check reciprocal of two numbers.