Logo AND Algorithmique Numérique Distribuée

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