Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Removes the gras_config.h inclusion, adds the portable.h inclusion for win32 portability.
[simgrid.git] / src / xbt / graph_private.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2006 Darina Dimitrova, Arnaud Legrand. 
4    All rights reserved.                  */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef _XBT_GRAPH_PRIVATE_H
10 #define _XBT_GRAPH_PRIVATE_H
11 #include "xbt/dynar.h"
12
13 #define NOT_EXPLORED 0
14 #define CURRENTLY_EXPLORING 1
15 #define ALREADY_EXPLORED 2
16
17 /* Node structure */
18 /* typedef struct xbt_node *xbt_node_t; */
19 typedef struct xbt_node 
20 {
21   xbt_dynar_t out;
22   xbt_dynar_t in;  /* not used when the graph is directed */
23   double position_x; /* positive value: negative means undefined */
24   double position_y; /* positive value: negative means undefined */
25   void *data;      /* user data */
26   void *xbtdata;   /* private xbt data: should be reinitialized at the
27                       beginning of your algorithm if you need to use it */  
28 } s_xbt_node_t;
29
30 /* edge structure */
31 /* typedef struct xbt_edge *xbt_edge_t; */
32 typedef struct xbt_edge 
33 {
34   xbt_node_t src;
35   xbt_node_t dst;
36   void *data;      /* user data */
37   void *xbtdata;   /* private xbt data: should be reinitialized at the
38                       beginning of your algorithm if you need to use it */  
39   double length;   /* positive value: negative means undefined */
40 } s_xbt_edge_t;
41
42 /* Graph structure */
43 /* typedef struct xbt_graph *xbt_graph_t; */
44 typedef struct xbt_graph 
45 {
46   xbt_dynar_t nodes;
47   xbt_dynar_t edges;
48   unsigned short int directed;
49   void *data;      /* user data */
50   void *xbtdata;   /* private xbt data: should be reinitialized at the
51                       beginning of your algorithm if you need to use it */  
52 } s_xbt_graph_t;
53 void xbt_floyd_algorithm(xbt_graph_t g, double* adj,double* d,  xbt_node_t* p);
54 void xbt_graph_depth_visit (xbt_graph_t g,xbt_node_t n,xbt_node_t* sorted,int* idx);
55
56 #endif                          /* _XBT_GRAPH_PRIVATE_H */