owlps/GuiNuMo-server/test.cc

33 lines
566 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 server ;
server.fastViterbiLike(VITERBI_N, VITERBI_K, 0) ;
/*
server.createClient() ;
server.printLastClientV();
server.monitorClient(0) ;
*/
cout << argv[0] << " : fin." << endl ;
fflush(stdout) ;
return 0;
}