-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.cpp
48 lines (37 loc) · 1.2 KB
/
main.cpp
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
/*----------------------------------------------------------------------------
*----------------------------------------------------------------------------
*----------------------------------------------------------------------------
* V2.0 22-03-2019
*
* 'K I M E R A'
*
* C + + 11
*
* By Pablo Martín García
*
*
* ----------------------------------------------------------------------
* Copyright (C) 2019, Pablo Martín García
*
* Contact Addresses: Pablo Martín García pablo.martinga@gmail.com
*
* KIMERA is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation
*
*---------------------------------------------------------------------------*/
#include "Simulation.h"
using namespace std;
int main(int argc, char *argv[])
{
Simulation sim1=Simulation();
if (argc==2)
{
sim1.complete_simulation(argv[1]);
}
else
{
sim1.complete_simulation("kimera.input");
}
return 0;
}