X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/98b96e960102644def66b7e75f084626d557ae4b..2d37e348a09783cda723c7019640ee69de168324:/src/kernel/lmm/maxmin.hpp diff --git a/src/kernel/lmm/maxmin.hpp b/src/kernel/lmm/maxmin.hpp index 4dc68c10b9..1e3b0d3707 100644 --- a/src/kernel/lmm/maxmin.hpp +++ b/src/kernel/lmm/maxmin.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -357,7 +357,7 @@ public: * @brief Get the number of constraint associated to a variable * @return The number of constraint associated to the variable */ - int get_number_of_constraint() const { return cnsts.size(); } + size_t get_number_of_constraint() const { return cnsts.size(); } /** * @brief Get the data associated to a variable @@ -445,7 +445,7 @@ public: * @param bound The maximum value of the variable (-1.0 if no maximum value) * @param number_of_constraints The maximum number of constraint to associate to the variable */ - Variable* variable_new(resource::Action* id, double weight_value, double bound, int number_of_constraints); + Variable* variable_new(resource::Action* id, double weight_value, double bound, size_t number_of_constraints); /** * @brief Free a variable @@ -599,7 +599,6 @@ private: modified_constraint_set; xbt_mallocator_t variable_mallocator_ = xbt_mallocator_new(65536, System::variable_mallocator_new_f, System::variable_mallocator_free_f, nullptr); - ; }; class XBT_PUBLIC FairBottleneck : public System {