#include "diffusion.hh"Include dependency graph for /diffusion/diffusion.cc:

Go to the source code of this file.
Compounds | |
| class | HashEntry |
| class | NeighborEntry |
Functions | |
| void | signal_handler (int p) |
| int | main (int argc, char **argv) |
Variables | |
| DiffusionCoreAgent * | agent |
|
||||||||||||
|
Definition at line 1305 of file /diffusion/diffusion.cc. References agent, DiffusionCoreAgent::run(), and signal_handler().
01306 {
01307 agent = new DiffusionCoreAgent(argc, argv);
01308
01309 signal(SIGINT, signal_handler);
01310
01311 agent->run();
01312
01313 return 0;
01314 }
|
Here is the call graph for this function:

|
|
Definition at line 110 of file /diffusion/diffusion.cc. References agent, and DiffusionCoreAgent::timeToStop(). Referenced by main().
00111 {
00112 agent->timeToStop();
00113 exit(0);
00114 }
|
Here is the call graph for this function:

|
1.3.3