utils/bench-event-collector.cc
author Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed, 04 Jun 2008 11:58:51 -0700
changeset 3223 87b3ea3ae0f8
parent 1727 064aaa84c103
permissions -rw-r--r--
remove un-implemented code

#include <iostream>
#include <vector>
#include <stdlib.h>
#include "ns3/event-collector.h"
#include "ns3/simulator.h"

using namespace ns3;

void Foo ()
{

}

int main (int argc, char *argv[])
{
    EventCollector events;

    if (argc < 3)
    {
        std::cerr << "usage: bench-event-collector NUM_EVENTS NUM_REPETITIONS" << std::endl;
        return 1;
    }
    int numEvents = atoi (argv[1]);
    int numRepetitions = atoi (argv[2]);
    
    for (int repetition = 0; repetition < numRepetitions; ++repetition)
    {
        for (int n = 0; n < numEvents; ++n)
        {
            events.Track (Simulator::Schedule (Simulator::Now (), Foo));
        }
        Simulator::Run ();
    }
}