Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Adding sdp.c and the bunch of modified Makefile.in... :(
[simgrid.git] / src / surf / sdp.c
1 /*      $Id$     */
2
3 /* Copyright (c) 2007 Arnaud Legrand, Pedro Velho. All rights reserved.     */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8
9 #include "xbt/sysdep.h"
10 #include "xbt/log.h"
11 #include "maxmin_private.h"
12 #include <stdlib.h>
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_sdp, surf,
14                                 "Logging specific to SURF (sdp)");
15
16 void sdp_solve(lmm_system_t sys)
17 {
18 /*   lmm_variable_t var = NULL; */
19 /*   lmm_constraint_t cnst = NULL; */
20 /*   lmm_element_t elem = NULL; */
21 /*   xbt_swag_t cnst_list = NULL; */
22 /*   xbt_swag_t var_list = NULL; */
23 /*   xbt_swag_t elem_list = NULL; */
24 /*   double min_usage = -1; */
25
26   if (!(sys->modified))
27     return;
28
29 }