Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Use member hooks for CpuTi
[simgrid.git] / src / surf / platf_generator_private.h
index bdec97e..9b04b44 100644 (file)
@@ -1,25 +1,15 @@
+/* Copyright (c) 2012, 2014. The SimGrid Team.
+ * All rights reserved.                                                     */
+
+/* This program is free software; you can redistribute it and/or modify it
+ * under the terms of the license (GNU LGPL) which comes with this package. */
+
 #ifndef SG_PLATF_GEN_PRIVATE_H
 #define SG_PLATF_GEN_PRIVATE_H
 
 #include "xbt/graph.h"
 #include "simgrid/platf.h"
 
-typedef struct s_context_node_t {
-  unsigned long id;
-  double x, y;
-  int degree;
-  e_platf_node_kind kind;
-  union {
-    s_sg_platf_host_cbarg_t host_parameters;
-    s_sg_platf_cluster_cbarg_t cluster_parameters;
-  };
-} s_context_node_t;
-
-typedef struct s_context_edge_t {
-  unsigned long id;
-  s_sg_platf_link_cbarg_t link_parameters;
-} s_context_edge_t;
-
 void platf_graph_init(unsigned long node_count);
 
 void platf_node_connect(xbt_node_t node1, xbt_node_t node2);