owlps/GuiNuMo-server/test.cc

29 lines
507 B
C++

#include <iostream>
#include <fstream>
#include <string>
#include "referencepoint.hh"
#include "measurement.hh"
#include "accesspoint.hh"
#include "clientinfo.hh"
#include "server.hh"
#include "point.hh"
using namespace std;
using std::string;
int main(int argc, char ** argv)
{
ofstream output_file;
string read_file;
Server my_server;
// my_server.radar_exp();
my_server.fastViterbiLike(VITERBI_N, VITERBI_K, 0) ;
cout << argv[0] << " : fin." << endl ;
fflush(stdout) ;
return 0;
}