1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
|
/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2009 MIRKO BANCHI
* Copyright (c) 2015 University of Washington
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Authors: Mirko Banchi <mk.banchi@gmail.com>
* Sebastien Deronne <sebastien.deronne@gmail.com>
* Tom Henderson <tomhend@u.washington.edu>
*
* Adapted from ht-wifi-network.cc example
*/
#include <sstream>
#include <iomanip>
#include "ns3/core-module.h"
#include "ns3/config-store-module.h"
#include "ns3/network-module.h"
#include "ns3/applications-module.h"
#include "ns3/wifi-module.h"
#include "ns3/mobility-module.h"
#include "ns3/spectrum-module.h"
#include "ns3/internet-module.h"
// This is a simple example of an IEEE 802.11n Wi-Fi network with a
// non-Wi-Fi interferer. It is an adaptation of the wifi-spectrum-per-example
//
// Unless the --waveformPower argument is passed, it will behave like
// wifi-spectrum-per-example. Adding --waveformPower=value for values
// greater than 0.0001 will result in frame losses beyond those that
// result from the normal SNR based on distance path loss.
//
// If YansWifiPhy is selected as the wifiType, --waveformPower will have
// no effect.
//
// Network topology:
//
// Wi-Fi 192.168.1.0
//
// STA AP
// * <-- distance --> *
// | |
// n1 n2
//
// Users may vary the following command-line arguments in addition to the
// attributes, global values, and default values typically available:
//
// --simulationTime: Simulation time in seconds [10]
// --udp: UDP if set to 1, TCP otherwise [true]
// --distance: meters separation between nodes [50]
// --index: restrict index to single value between 0 and 31 [256]
// --wifiType: select ns3::SpectrumWifiPhy or ns3::YansWifiPhy [ns3::SpectrumWifiPhy]
// --errorModelType: select ns3::NistErrorRateModel or ns3::YansErrorRateModel [ns3::NistErrorRateModel]
// --enablePcap: enable pcap output [false]
// --waveformPower: Waveform power [0]
//
// By default, the program will step through 32 index values, corresponding
// to the following MCS, channel width, and guard interval combinations:
// index 0-7: MCS 0-7, long guard interval, 20 MHz channel
// index 8-15: MCS 0-7, short guard interval, 20 MHz channel
// index 16-23: MCS 0-7, long guard interval, 40 MHz channel
// index 24-31: MCS 0-7, short guard interval, 40 MHz channel
// and send 1000 UDP packets using each MCS, using the SpectrumWifiPhy and the
// NistErrorRateModel, at a distance of 50 meters. The program outputs
// results such as:
//
// wifiType: ns3::SpectrumWifiPhy distance: 50m; sent: 1000
// index MCS Rate (Mb/s) Tput (Mb/s) Received Signal (dBm) Noise (dBm) SNR (dB)
// 0 0 6.5 0.7776 1000 -77.6633 -100.966 23.3027
// 1 1 13 0.7776 1000 -77.6633 -100.966 23.3027
// 2 2 19.5 0.7776 1000 -77.6633 -100.966 23.3027
// 3 3 26 0.7776 1000 -77.6633 -100.966 23.3027
// ...
//
// When UDP is used, the throughput will always be 0.7776 Mb/s since the
// traffic generator does not attempt to match the maximum Phy data rate
// but instead sends at a constant rate. When TCP is used, the TCP flow
// will exhibit different throughput depending on the index.
using namespace ns3;
// Global variables for use in callbacks.
double g_signalDbmAvg;
double g_noiseDbmAvg;
uint32_t g_samples;
uint16_t g_channelNumber;
uint32_t g_rate;
void MonitorSniffRx (Ptr<const Packet> packet, uint16_t channelFreqMhz,
uint16_t channelNumber, uint32_t rate,
WifiPreamble preamble, WifiTxVector txVector,
struct mpduInfo aMpdu, struct signalNoiseDbm signalNoise)
{
g_samples++;
g_signalDbmAvg += ((signalNoise.signal - g_signalDbmAvg) / g_samples);
g_noiseDbmAvg += ((signalNoise.noise - g_noiseDbmAvg) / g_samples);
g_rate = rate;
g_channelNumber = channelNumber;
}
NS_LOG_COMPONENT_DEFINE ("WifiSpectrumPerInterference");
Ptr<SpectrumModel> SpectrumModelWifi5180MHz;
class static_SpectrumModelWifi5180MHz_initializer
{
public:
static_SpectrumModelWifi5180MHz_initializer ()
{
BandInfo bandInfo;
bandInfo.fc = 5180e6;
bandInfo.fl = 5180e6 - 10e6;
bandInfo.fh = 5180e6 + 10e6;
Bands bands;
bands.push_back (bandInfo);
SpectrumModelWifi5180MHz = Create<SpectrumModel> (bands);
}
} static_SpectrumModelWifi5180MHz_initializer_instance;
int main (int argc, char *argv[])
{
bool udp = true;
double distance = 50;
double simulationTime = 10; //seconds
uint16_t index = 256;
std::string wifiType = "ns3::SpectrumWifiPhy";
std::string errorModelType = "ns3::NistErrorRateModel";
bool enablePcap = false;
const uint32_t tcpPacketSize = 1448;
double waveformPower = 0;
CommandLine cmd;
cmd.AddValue ("simulationTime", "Simulation time in seconds", simulationTime);
cmd.AddValue ("udp", "UDP if set to 1, TCP otherwise", udp);
cmd.AddValue ("distance", "meters separation between nodes", distance);
cmd.AddValue ("index", "restrict index to single value between 0 and 31", index);
cmd.AddValue ("wifiType", "select ns3::SpectrumWifiPhy or ns3::YansWifiPhy", wifiType);
cmd.AddValue ("errorModelType", "select ns3::NistErrorRateModel or ns3::YansErrorRateModel", errorModelType);
cmd.AddValue ("enablePcap", "enable pcap output", enablePcap);
cmd.AddValue ("waveformPower", "Waveform power", waveformPower);
cmd.Parse (argc,argv);
uint16_t startIndex = 0;
uint16_t stopIndex = 31;
if (index < 32)
{
startIndex = index;
stopIndex = index;
}
std::cout << "wifiType: " << wifiType << " distance: " << distance << "m; sent: 1000 TxPower: 16 dBm (40 mW)" << std::endl;
std::cout << std::setw (5) << "index" <<
std::setw (6) << "MCS" <<
std::setw (12) << "Rate (Mb/s)" <<
std::setw (12) << "Tput (Mb/s)" <<
std::setw (10) << "Received " <<
std::setw (12) << "Signal (dBm)" <<
std::setw (12) << "Noi+Inf(dBm)" <<
std::setw (10) << "SNR (dB)" <<
std::endl;
for (uint16_t i = startIndex; i <= stopIndex; i++)
{
uint32_t payloadSize;
if (udp)
{
payloadSize = 972; // 1000 bytes IPv4
}
else
{
payloadSize = 1448; // 1500 bytes IPv6
Config::SetDefault ("ns3::TcpSocket::SegmentSize", UintegerValue (payloadSize));
}
NodeContainer wifiStaNode;
wifiStaNode.Create (1);
NodeContainer wifiApNode;
wifiApNode.Create (1);
NodeContainer interferingNode;
interferingNode.Create (1);
YansWifiPhyHelper phy = YansWifiPhyHelper::Default ();
SpectrumWifiPhyHelper spectrumPhy = SpectrumWifiPhyHelper::Default ();
Ptr<MultiModelSpectrumChannel> spectrumChannel;
if (wifiType == "ns3::YansWifiPhy")
{
YansWifiChannelHelper channel;
channel.AddPropagationLoss ("ns3::FriisPropagationLossModel");
channel.SetPropagationDelay ("ns3::ConstantSpeedPropagationDelayModel");
phy.SetChannel (channel.Create ());
phy.Set ("Frequency", UintegerValue (5180));
if (i <= 7)
{
phy.Set ("ShortGuardEnabled", BooleanValue (false));
phy.Set ("ChannelWidth", UintegerValue (20));
}
else if (i > 7 && i <= 15)
{
phy.Set ("ShortGuardEnabled", BooleanValue (true));
phy.Set ("ChannelWidth", UintegerValue (20));
}
else if (i > 15 && i <= 23)
{
phy.Set ("ShortGuardEnabled", BooleanValue (false));
phy.Set ("ChannelWidth", UintegerValue (40));
}
else
{
phy.Set ("ShortGuardEnabled", BooleanValue (true));
phy.Set ("ChannelWidth", UintegerValue (40));
}
}
else if (wifiType == "ns3::SpectrumWifiPhy")
{
//Bug 2460: CcaMode1Threshold default should be set to -62 dBm when using Spectrum
Config::SetDefault ("ns3::WifiPhy::CcaMode1Threshold", DoubleValue (-62.0));
spectrumChannel
= CreateObject<MultiModelSpectrumChannel> ();
Ptr<FriisPropagationLossModel> lossModel
= CreateObject<FriisPropagationLossModel> ();
spectrumChannel->AddPropagationLossModel (lossModel);
Ptr<ConstantSpeedPropagationDelayModel> delayModel
= CreateObject<ConstantSpeedPropagationDelayModel> ();
spectrumChannel->SetPropagationDelayModel (delayModel);
spectrumPhy.SetChannel (spectrumChannel);
spectrumPhy.SetErrorRateModel (errorModelType);
spectrumPhy.Set ("Frequency", UintegerValue (5180)); // channel 36 at 20 MHz
if (i <= 7)
{
spectrumPhy.Set ("ShortGuardEnabled", BooleanValue (false));
spectrumPhy.Set ("ChannelWidth", UintegerValue (20));
}
else if (i > 7 && i <= 15)
{
spectrumPhy.Set ("ShortGuardEnabled", BooleanValue (true));
spectrumPhy.Set ("ChannelWidth", UintegerValue (20));
}
else if (i > 15 && i <= 23)
{
spectrumPhy.Set ("ShortGuardEnabled", BooleanValue (false));
spectrumPhy.Set ("ChannelWidth", UintegerValue (40));
}
else
{
spectrumPhy.Set ("ShortGuardEnabled", BooleanValue (true));
spectrumPhy.Set ("ChannelWidth", UintegerValue (40));
}
}
else
{
NS_FATAL_ERROR ("Unsupported WiFi type " << wifiType);
}
WifiHelper wifi;
wifi.SetStandard (WIFI_PHY_STANDARD_80211n_5GHZ);
WifiMacHelper mac;
Ssid ssid = Ssid ("ns380211n");
double datarate = 0;
StringValue DataRate;
if (i == 0)
{
DataRate = StringValue ("HtMcs0");
datarate = 6.5;
}
else if (i == 1)
{
DataRate = StringValue ("HtMcs1");
datarate = 13;
}
else if (i == 2)
{
DataRate = StringValue ("HtMcs2");
datarate = 19.5;
}
else if (i == 3)
{
DataRate = StringValue ("HtMcs3");
datarate = 26;
}
else if (i == 4)
{
DataRate = StringValue ("HtMcs4");
datarate = 39;
}
else if (i == 5)
{
DataRate = StringValue ("HtMcs5");
datarate = 52;
}
else if (i == 6)
{
DataRate = StringValue ("HtMcs6");
datarate = 58.5;
}
else if (i == 7)
{
DataRate = StringValue ("HtMcs7");
datarate = 65;
}
else if (i == 8)
{
DataRate = StringValue ("HtMcs0");
datarate = 7.2;
}
else if (i == 9)
{
DataRate = StringValue ("HtMcs1");
datarate = 14.4;
}
else if (i == 10)
{
DataRate = StringValue ("HtMcs2");
datarate = 21.7;
}
else if (i == 11)
{
DataRate = StringValue ("HtMcs3");
datarate = 28.9;
}
else if (i == 12)
{
DataRate = StringValue ("HtMcs4");
datarate = 43.3;
}
else if (i == 13)
{
DataRate = StringValue ("HtMcs5");
datarate = 57.8;
}
else if (i == 14)
{
DataRate = StringValue ("HtMcs6");
datarate = 65;
}
else if (i == 15)
{
DataRate = StringValue ("HtMcs7");
datarate = 72.2;
}
else if (i == 16)
{
DataRate = StringValue ("HtMcs0");
datarate = 13.5;
}
else if (i == 17)
{
DataRate = StringValue ("HtMcs1");
datarate = 27;
}
else if (i == 18)
{
DataRate = StringValue ("HtMcs2");
datarate = 40.5;
}
else if (i == 19)
{
DataRate = StringValue ("HtMcs3");
datarate = 54;
}
else if (i == 20)
{
DataRate = StringValue ("HtMcs4");
datarate = 81;
}
else if (i == 21)
{
DataRate = StringValue ("HtMcs5");
datarate = 108;
}
else if (i == 22)
{
DataRate = StringValue ("HtMcs6");
datarate = 121.5;
}
else if (i == 23)
{
DataRate = StringValue ("HtMcs7");
datarate = 135;
}
else if (i == 24)
{
DataRate = StringValue ("HtMcs0");
datarate = 15;
}
else if (i == 25)
{
DataRate = StringValue ("HtMcs1");
datarate = 30;
}
else if (i == 26)
{
DataRate = StringValue ("HtMcs2");
datarate = 45;
}
else if (i == 27)
{
DataRate = StringValue ("HtMcs3");
datarate = 60;
}
else if (i == 28)
{
DataRate = StringValue ("HtMcs4");
datarate = 90;
}
else if (i == 29)
{
DataRate = StringValue ("HtMcs5");
datarate = 120;
}
else if (i == 30)
{
DataRate = StringValue ("HtMcs6");
datarate = 135;
}
else
{
DataRate = StringValue ("HtMcs7");
datarate = 150;
}
wifi.SetRemoteStationManager ("ns3::ConstantRateWifiManager","DataMode", DataRate,
"ControlMode", DataRate);
NetDeviceContainer staDevice;
NetDeviceContainer apDevice;
if (wifiType == "ns3::YansWifiPhy")
{
mac.SetType ("ns3::StaWifiMac",
"Ssid", SsidValue (ssid),
"ActiveProbing", BooleanValue (false));
staDevice = wifi.Install (phy, mac, wifiStaNode);
mac.SetType ("ns3::ApWifiMac",
"Ssid", SsidValue (ssid));
apDevice = wifi.Install (phy, mac, wifiApNode);
}
else if (wifiType == "ns3::SpectrumWifiPhy")
{
mac.SetType ("ns3::StaWifiMac",
"Ssid", SsidValue (ssid),
"ActiveProbing", BooleanValue (false));
staDevice = wifi.Install (spectrumPhy, mac, wifiStaNode);
mac.SetType ("ns3::ApWifiMac",
"Ssid", SsidValue (ssid));
apDevice = wifi.Install (spectrumPhy, mac, wifiApNode);
}
// mobility.
MobilityHelper mobility;
Ptr<ListPositionAllocator> positionAlloc = CreateObject<ListPositionAllocator> ();
positionAlloc->Add (Vector (0.0, 0.0, 0.0));
positionAlloc->Add (Vector (distance, 0.0, 0.0));
positionAlloc->Add (Vector (distance, distance, 0.0));
mobility.SetPositionAllocator (positionAlloc);
mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
mobility.Install (wifiApNode);
mobility.Install (wifiStaNode);
mobility.Install (interferingNode);
/* Internet stack*/
InternetStackHelper stack;
stack.Install (wifiApNode);
stack.Install (wifiStaNode);
Ipv4AddressHelper address;
address.SetBase ("192.168.1.0", "255.255.255.0");
Ipv4InterfaceContainer staNodeInterface;
Ipv4InterfaceContainer apNodeInterface;
staNodeInterface = address.Assign (staDevice);
apNodeInterface = address.Assign (apDevice);
/* Setting applications */
ApplicationContainer serverApp, sinkApp;
if (udp)
{
//UDP flow
UdpServerHelper myServer (9);
serverApp = myServer.Install (wifiStaNode.Get (0));
serverApp.Start (Seconds (0.0));
serverApp.Stop (Seconds (simulationTime + 1));
UdpClientHelper myClient (staNodeInterface.GetAddress (0), 9);
myClient.SetAttribute ("MaxPackets", UintegerValue (1000));
myClient.SetAttribute ("Interval", TimeValue (MilliSeconds (5)));
myClient.SetAttribute ("PacketSize", UintegerValue (payloadSize));
ApplicationContainer clientApp = myClient.Install (wifiApNode.Get (0));
clientApp.Start (Seconds (1.0));
clientApp.Stop (Seconds (simulationTime + 1));
}
else
{
//TCP flow
uint16_t port = 50000;
Address apLocalAddress (InetSocketAddress (Ipv4Address::GetAny (), port));
PacketSinkHelper packetSinkHelper ("ns3::TcpSocketFactory", apLocalAddress);
sinkApp = packetSinkHelper.Install (wifiStaNode.Get (0));
sinkApp.Start (Seconds (0.0));
sinkApp.Stop (Seconds (simulationTime + 1));
OnOffHelper onoff ("ns3::TcpSocketFactory",Ipv4Address::GetAny ());
onoff.SetAttribute ("OnTime", StringValue ("ns3::ConstantRandomVariable[Constant=1]"));
onoff.SetAttribute ("OffTime", StringValue ("ns3::ConstantRandomVariable[Constant=0]"));
onoff.SetAttribute ("PacketSize", UintegerValue (payloadSize));
onoff.SetAttribute ("DataRate", DataRateValue (1000000000)); //bit/s
ApplicationContainer apps;
AddressValue remoteAddress (InetSocketAddress (staNodeInterface.GetAddress (0), port));
onoff.SetAttribute ("Remote", remoteAddress);
apps.Add (onoff.Install (wifiApNode.Get (0)));
apps.Start (Seconds (1.0));
apps.Stop (Seconds (simulationTime + 1));
}
// Configure waveform generator
Ptr<SpectrumValue> wgPsd = Create<SpectrumValue> (SpectrumModelWifi5180MHz);
*wgPsd = waveformPower / (100 * 180000);
NS_LOG_INFO ("wgPsd : " << *wgPsd << " integrated power: " << Integral (*(GetPointer (wgPsd))));
if (wifiType == "ns3::SpectrumWifiPhy")
{
WaveformGeneratorHelper waveformGeneratorHelper;
waveformGeneratorHelper.SetChannel (spectrumChannel);
waveformGeneratorHelper.SetTxPowerSpectralDensity (wgPsd);
waveformGeneratorHelper.SetPhyAttribute ("Period", TimeValue (Seconds (0.0007)));
waveformGeneratorHelper.SetPhyAttribute ("DutyCycle", DoubleValue (1));
NetDeviceContainer waveformGeneratorDevices = waveformGeneratorHelper.Install (interferingNode);
Simulator::Schedule (Seconds (0.002), &WaveformGenerator::Start,
waveformGeneratorDevices.Get (0)->GetObject<NonCommunicatingNetDevice> ()->GetPhy ()->GetObject<WaveformGenerator> ());
}
Config::ConnectWithoutContext ("/NodeList/0/DeviceList/*/Phy/MonitorSnifferRx", MakeCallback (&MonitorSniffRx));
if (enablePcap)
{
std::stringstream ss;
ss << "wifi-spectrum-per-example-" << i;
phy.EnablePcap (ss.str (), apDevice);
}
g_signalDbmAvg = 0;
g_noiseDbmAvg = 0;
g_samples = 0;
g_channelNumber = 0;
g_rate = 0;
// Make sure we are tuned to 5180 MHz; if not, the example will
// not work properly
Ptr<NetDevice> staDevicePtr = staDevice.Get (0);
Ptr<WifiNetDevice> wifiStaDevicePtr = staDevicePtr->GetObject <WifiNetDevice> ();
UintegerValue val;
wifiStaDevicePtr->GetPhy ()->GetAttribute ("Frequency", val);
if (val.Get () != 5180)
{
NS_FATAL_ERROR ("Error: Wi-Fi nodes must be tuned to 5180 MHz to match the waveform generator");
}
Simulator::Stop (Seconds (simulationTime + 1));
Simulator::Run ();
double throughput = 0;
uint32_t totalPacketsThrough = 0;
if (udp)
{
//UDP
totalPacketsThrough = DynamicCast<UdpServer> (serverApp.Get (0))->GetReceived ();
throughput = totalPacketsThrough * payloadSize * 8 / (simulationTime * 1000000.0); //Mbit/s
}
else
{
//TCP
uint32_t totalBytesRx = DynamicCast<PacketSink> (sinkApp.Get (0))->GetTotalRx ();
totalPacketsThrough = totalBytesRx / tcpPacketSize;
throughput = totalBytesRx * 8 / (simulationTime * 1000000.0); //Mbit/s
}
std::cout << std::setw (5) << i <<
std::setw (6) << (i % 8) <<
std::setw (10) << datarate <<
std::setw (12) << throughput <<
std::setw (8) << totalPacketsThrough;
if (totalPacketsThrough > 0)
{
std::cout << std::setw (12) << g_signalDbmAvg <<
std::setw (12) << g_noiseDbmAvg <<
std::setw (12) << (g_signalDbmAvg - g_noiseDbmAvg) <<
std::endl;
}
else
{
std::cout << std::setw (12) << "N/A" <<
std::setw (12) << "N/A" <<
std::setw (12) << "N/A" <<
std::endl;
}
Simulator::Destroy ();
}
return 0;
}
|