Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
%lg -> %g ...
[simgrid.git] / testsuite / surf / maxmin_bench.c
1 /*      $Id$     */
2
3 /* A crash few tests for the maxmin library                                 */
4
5 /* Copyright (c) 2004 Arnaud Legrand. All rights reserved.                  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include <stdlib.h>
11 #include <stdio.h>
12 #include "xbt/xbt_portability.h"
13 #include "surf/maxmin.h"
14 #include "xbt/xbt_portability.h"
15 #include "xbt/sysdep.h"         /* time manipulation for benchmarking */
16
17 double date;
18
19 double float_random(double max);
20 double float_random(double max)
21 {
22   return ((max * rand()) / (RAND_MAX + 1.0));
23 }
24
25 int int_random(int max);
26 int int_random(int max)
27 {
28   return (int) (((max * 1.0) * rand()) / (RAND_MAX + 1.0));
29 }
30
31 void test(int nb_cnst, int nb_var, int nb_elem);
32 void test(int nb_cnst, int nb_var, int nb_elem)
33 {
34   lmm_system_t Sys = NULL;
35   lmm_constraint_t *cnst = calloc(nb_cnst, sizeof(lmm_constraint_t));
36   lmm_variable_t *var = calloc(nb_var, sizeof(lmm_variable_t));
37   int *used = calloc(nb_cnst, sizeof(int));
38   int i, j, k;
39
40   Sys = lmm_system_new();
41
42   for (i = 0; i < nb_cnst; i++) {
43     cnst[i] = lmm_constraint_new(Sys, NULL, float_random(10.0));
44   }
45
46   for (i = 0; i < nb_var; i++) {
47     var[i] = lmm_variable_new(Sys, NULL, 1.0, -1.0, nb_elem);
48     for (j = 0; j < nb_cnst; j++)
49       used[j] = 0;
50     for (j = 0; j < nb_elem; j++) {
51       k = int_random(nb_cnst);
52       if (used[k]) {
53         j--;
54         continue;
55       }
56       lmm_expand(Sys, cnst[k], var[i], float_random(1.0));
57       used[k] = 1;
58     }
59   }
60
61   printf("Starting to solve\n");
62   date = xbt_os_time() * 1000000;
63   lmm_solve(Sys);
64   date = xbt_os_time() * 1000000 - date;
65
66   lmm_system_free(Sys);
67   free(cnst);
68   free(var);
69   free(used);
70 }
71
72
73 int main(int argc, char **argv)
74 {
75   int nb_cnst = 20000;
76   int nb_var = 20000;
77   int nb_elem = 80;
78   date = xbt_os_time() * 1000000;
79   test(nb_cnst, nb_var, nb_elem);
80   printf("One shot execution time for a total of %d constraints, "
81          "%d variables with %d active constraint each : %g microsecondes \n",
82          nb_cnst, nb_var, nb_elem, date);
83   return 0;
84 }