X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..06e3509f987adba93a8b004710448daa6da8725d:/teshsuite/simdag/network/test_reinit_costs.c diff --git a/teshsuite/simdag/network/test_reinit_costs.c b/teshsuite/simdag/network/test_reinit_costs.c index 340d41b5b0..c269ba7d39 100644 --- a/teshsuite/simdag/network/test_reinit_costs.c +++ b/teshsuite/simdag/network/test_reinit_costs.c @@ -1,15 +1,16 @@ +/* Computation tests */ + +/* Copyright (c) 2007, 2009, 2010. 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. */ + #include #include #include "simdag/simdag.h" -/* - * SimDag - * Computation tests - * Copyright (C) 2007 - * Sascha Hunold, Frederic Suter - */ - /* * This test checks if the reinitialization of * surf works properly. @@ -67,8 +68,8 @@ static SD_task_t create_root_with_costs() SD_task_t root; root = SD_task_create("Root", NULL, 1.0); - SD_task_schedule(root, 2, SD_workstation_get_list(), comp_cost, comm_cost, - -1.0); + SD_task_schedule(root, 2, SD_workstation_get_list(), comp_cost, + comm_cost, -1.0); return root; }