Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / include / surf / datatypes.h
1 /* Copyright (c) 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef MAXMIN_DATATYPES_H
8 #define MAXMIN_DATATYPES_H
9
10 /** \ingroup SURF_models
11  *  \brief Model datatype
12  *
13  *  Generic data structure for a model. The workstations,
14  *  the CPUs and the network links are examples of models.
15  */
16 typedef struct surf_model *surf_model_t;
17
18 /** \ingroup SURF_actions
19  *  \brief Action datatype
20  *
21  * An action is some working amount on a model.
22  * It is represented as a cost, a priority, a duration and a state.
23  */
24 typedef struct surf_action *surf_action_t;
25 typedef struct surf_file *surf_file_t;
26 typedef struct surf_stat *surf_stat_t;
27
28 typedef struct lmm_element *lmm_element_t;
29 typedef struct lmm_variable *lmm_variable_t;
30 typedef struct lmm_constraint *lmm_constraint_t;
31 typedef struct lmm_system *lmm_system_t;
32
33 typedef struct tmgr_history *tmgr_history_t;
34 typedef struct tmgr_trace_event *tmgr_trace_event_t;
35
36
37 #endif                          /* MAXMIN_DATATYPES_H */