X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fd472f70823a1157acdca204f02accd97918dccc..ed9b0e1a9b552d612cfbcfc03d730a42f7124b84:/testsuite/surf/maxmin_usage.c diff --git a/testsuite/surf/maxmin_usage.c b/testsuite/surf/maxmin_usage.c index 1937a6b0ac..33f3213d29 100644 --- a/testsuite/surf/maxmin_usage.c +++ b/testsuite/surf/maxmin_usage.c @@ -1,15 +1,17 @@ +/* $Id$ */ + /* A few tests for the maxmin library */ -/* Authors: Arnaud Legrand */ +/* Copyright (c) 2004 Arnaud Legrand. 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. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #include #include #include "surf/maxmin.h" -#define PRINT_VAR(var) printf(#var " = %Lg\n",lmm_variable_getvalue(var)); +#define PRINT_VAR(var) printf(#var " = %lg\n",lmm_variable_getvalue(var)); /* */ /* ______ */ @@ -65,7 +67,7 @@ void test(void) printf("\n"); - lmm_update_variable_weight(R_1_2_3,.5); + lmm_update_variable_weight(Sys,R_1_2_3,.5); lmm_solve(Sys); PRINT_VAR(R_1_2_3); @@ -110,10 +112,12 @@ void test2(void) lmm_system_free(Sys); } - int main(int argc, char **argv) { + printf("***** Test 1 ***** \n"); test(); + printf("***** Test 2 ***** \n"); test2(); + return 0; }