|
A Discrete-Event Network Simulator
|
API
|
Go to the documentation of this file.
21 #ifndef THOMPSON_SAMPLING_WIFI_MANAGER_H
22 #define THOMPSON_SAMPLING_WIFI_MANAGER_H
24 #include "ns3/random-variable-stream.h"
26 #include "ns3/wifi-remote-station-manager.h"
55 double rxSnr,
WifiMode txMode)
override;
59 double ctsSnr,
WifiMode ctsMode,
double rtsSnr)
override;
61 double ackSnr,
WifiMode ackMode,
double dataSnr,
62 uint16_t dataChannelWidth, uint8_t dataNss)
override;
64 uint16_t nSuccessfulMpdus, uint16_t nFailedMpdus,
65 double rxSnr,
double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss)
override;
void DoReportDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
Ptr< GammaRandomVariable > m_gammaRandomVariable
Variable used to sample beta-distributed random variables.
a unique identifier for an interface.
uint16_t GetModeGuardInterval(WifiRemoteStation *st, WifiMode mode) const
Returns guard interval in nanoseconds for the given mode.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Thompson Sampling rate control algorithm.
void DoReportDataOk(WifiRemoteStation *station, double ackSnr, WifiMode ackMode, double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss) override
This method is a pure virtual method that must be implemented by the sub-class.
void InitializeStation(WifiRemoteStation *station) const
Initializes station rate tables.
hold a list of per-remote-station state.
void DoReportRxOk(WifiRemoteStation *station, double rxSnr, WifiMode txMode) override
This method is a pure virtual method that must be implemented by the sub-class.
This class mimics the TXVECTOR which is to be passed to the PHY in order to define the parameters whi...
WifiTxVector DoGetDataTxVector(WifiRemoteStation *station) override
Smart pointer class similar to boost::intrusive_ptr.
int64_t AssignStreams(int64_t stream) override
Assign a fixed random variable stream number to the random variables used by this model.
represent a single transmission mode
void Decay(WifiRemoteStation *st, size_t i) const
Applies exponential decay to MCS statistics.
TracedValue< uint64_t > m_currentRate
Trace rate changes.
double m_decay
Exponential decay coefficient, Hz.
WifiTxVector DoGetRtsTxVector(WifiRemoteStation *station) override
void DoReportFinalDataFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
hold per-remote-station state.
void DoReportRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
void DoReportAmpduTxStatus(WifiRemoteStation *station, uint16_t nSuccessfulMpdus, uint16_t nFailedMpdus, double rxSnr, double dataSnr, uint16_t dataChannelWidth, uint8_t dataNss) override
Typically called per A-MPDU, either when a Block ACK was successfully received or when a BlockAckTime...
WifiRemoteStation * DoCreateStation() const override
static TypeId GetTypeId(void)
Get the type ID.
void DoReportFinalRtsFailed(WifiRemoteStation *station) override
This method is a pure virtual method that must be implemented by the sub-class.
void UpdateNextMode(WifiRemoteStation *station) const
Draws a new MCS and related parameters to try next time for this station.
virtual ~ThompsonSamplingWifiManager()
void DoReportRtsOk(WifiRemoteStation *station, double ctsSnr, WifiMode ctsMode, double rtsSnr) override
This method is a pure virtual method that must be implemented by the sub-class.
double SampleBetaVariable(uint64_t alpha, uint64_t beta) const
Sample beta random variable with given parameters.
ThompsonSamplingWifiManager()