Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
some sorting in the [smpi/xbt]_replay stuff
[simgrid.git] / examples / smpi / replay / replay.c
index 06b9f9b..24c1a0e 100644 (file)
@@ -7,13 +7,8 @@
 #include <stdio.h>
 #include "smpi/smpi.h"
 
-int main(int argc, char *argv[])
-{
+int main(int argc, char *argv[]) {
   smpi_replay_init(&argc, &argv);
-
-  /* Actually do the simulation using smpi_action_trace_run */
-  smpi_action_trace_run(NULL);
   smpi_replay_finalize();
-
   return 0;
 }