From 59753c048ca8993bcdbdcf3c97824cf9f100bc20 Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Wed, 22 Nov 2017 18:28:17 +0100 Subject: [PATCH] Kill unused functions. --- src/include/surf/maxmin.hpp | 16 ---------------- src/surf/maxmin.cpp | 10 ---------- 2 files changed, 26 deletions(-) diff --git a/src/include/surf/maxmin.hpp b/src/include/surf/maxmin.hpp index 68f3f40c66..179793a88b 100644 --- a/src/include/surf/maxmin.hpp +++ b/src/include/surf/maxmin.hpp @@ -325,22 +325,6 @@ XBT_PUBLIC(lmm_variable_t) lmm_get_var_from_cnst_safe(lmm_system_t sys, lmm_constraint_t cnst, lmm_element_t* elem, lmm_element_t* nextelem, int* numelem); -/** - * @brief Get the first active constraint of a system - * @param sys A system - * @return The first active constraint - */ -XBT_PUBLIC(lmm_constraint_t) lmm_get_first_active_constraint(lmm_system_t sys); - -/** - * @brief Get the next active constraint of a constraint in a system - * @param sys A system - * @param cnst An active constraint of the system - * - * @return The next active constraint - */ -XBT_PUBLIC(lmm_constraint_t) lmm_get_next_active_constraint(lmm_system_t sys, lmm_constraint_t cnst); - /** * @brief Get the data associated to a constraint * @param cnst A constraint diff --git a/src/surf/maxmin.cpp b/src/surf/maxmin.cpp index f2ada3f137..4595fbb5dc 100644 --- a/src/surf/maxmin.cpp +++ b/src/surf/maxmin.cpp @@ -1046,16 +1046,6 @@ int lmm_constraint_used(lmm_system_t sys, lmm_constraint_t cnst) return xbt_swag_belongs(cnst, &(sys->active_constraint_set)); } -inline lmm_constraint_t lmm_get_first_active_constraint(lmm_system_t sys) -{ - return (lmm_constraint_t)xbt_swag_getFirst(&(sys->active_constraint_set)); -} - -inline lmm_constraint_t lmm_get_next_active_constraint(lmm_system_t sys, lmm_constraint_t cnst) -{ - return (lmm_constraint_t)xbt_swag_getNext(cnst, (sys->active_constraint_set).offset); -} - /** \brief Update the constraint set propagating recursively to other constraints so the system should not be entirely * computed. * -- 2.20.1