tests: fix build on os/x
[schroedinger.git] / testsuite / utils.c
blob7cc2df2e410749881932f8779348f1a0b05a86d9
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <time.h>
5 #include <string.h>
7 #include <schroedinger/schro.h>
8 #include <schroedinger/schrounpack.h>
10 #include <schroedinger/schrotables.c>
12 int
13 main (int argc, char *argv[])
15 int i;
16 double x;
17 int j,k;
19 schro_init();
21 for(i=0;i<100;i++){
22 x = i*1;
23 j = schro_utils_multiplier_to_quant_index (x);
24 k = schro_table_quant[j];
25 printf("%g %d %d\n", x, j, k);
28 exit(0);