Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove GTNetS. It was not working anyway
[simgrid.git] / src / surf / gtnets / gtnets_interface.h
diff --git a/src/surf/gtnets/gtnets_interface.h b/src/surf/gtnets/gtnets_interface.h
deleted file mode 100644 (file)
index 261d790..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Interface for GTNetS.
-// Kayo Fujiwara 1/8/2007
-
-#ifndef _GTNETS_INTERFACE_H
-#define _GTNETS_INTERFACE_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-  
-  int gtnets_initialize();
-  int gtnets_add_link(int id, double bandwidth, double latency);
-  int gtnets_add_route(int src, int dst, int* links, int nlink);
-  int gtnets_create_flow(int src, int dst, long datasize, void* metadata);
-  double gtnets_get_time_to_next_flow_completion();
-  int gtnets_run_until_next_flow_completion(void*** metadata, int* number_of_flows);
-  int gtnets_run(double delta);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
-
-