Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add/update copyright notices.
[simgrid.git] / src / include / surf / datatypes.h
1 /* Copyright (c) 2009-2014. 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 //FIXME: 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 //FIXME:typedef struct surf_action *surf_action_t;
25 //FIXME:typedef struct surf_file *surf_file_t;
26 typedef struct surf_storage *surf_storage_t;
27 typedef struct surf_stat *surf_stat_t;
28
29 typedef struct lmm_element *lmm_element_t;
30 typedef struct lmm_variable *lmm_variable_t;
31 typedef struct lmm_constraint *lmm_constraint_t;
32 typedef struct lmm_constraint_light *lmm_constraint_light_t;
33 typedef struct lmm_system *lmm_system_t;
34
35 typedef struct tmgr_history *tmgr_history_t;
36 typedef struct tmgr_trace_event *tmgr_trace_event_t;
37
38
39 #endif                          /* MAXMIN_DATATYPES_H */