Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #244 from Takishipp/actor-yield
[simgrid.git] / src / include / surf / datatypes.hpp
1 /* Copyright (c) 2009-2017. 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_HPP
7 #define MAXMIN_DATATYPES_HPP
8
9 namespace simgrid {
10 namespace surf {
11 typedef struct s_lmm_element_t* lmm_element_t;
12 typedef struct s_lmm_variable_t* lmm_variable_t;
13 typedef struct s_lmm_constraint_t* lmm_constraint_t;
14 typedef struct s_lmm_constraint_light_t* lmm_constraint_light_t;
15 typedef struct s_lmm_system_t* lmm_system_t;
16 }
17 }
18
19 #endif