| # | Line 38 | Line 38 | int main(int argc,char* argv[]){ | |
|---|---|---|
| 38 | ||
| 39 | // first things first, all of the initializations | |
| 40 | ||
| 41 | + | printf("Initializing stuff ....\n"); |
| 42 | srand48( 1337 ); // the random number generator. | |
| 43 | initSimError(); // the error handler | |
| 44 | ||
| # | Line 51 | Line 52 | int main(int argc,char* argv[]){ | |
| 52 | ||
| 53 | ||
| 54 | in_name = argv[1]; | |
| 55 | < | entry_plug = new SimInfo; |
| 55 | > | entry_plug = new SimInfo(); |
| 56 | ||
| 57 | < | startMe = new SimSetup; |
| 57 | > | startMe = new SimSetup(); |
| 58 | startMe->setSimInfo( entry_plug ); | |
| 59 | startMe->parseFile( in_name ); | |
| 60 | startMe->createSim(); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |