[474a573] | 1 | #include <time.h> |
---|
[248da64] | 2 | #include <stdlib.h> |
---|
| 3 | #include <stdio.h> |
---|
[474a573] | 4 | #include <math.h> |
---|
| 5 | #include <assert.h> |
---|
[06dba46] | 6 | #include "config.h" |
---|
[248da64] | 7 | |
---|
[dc08c4f] | 8 | #ifdef HAVE_C99_VARARGS_MACROS |
---|
| 9 | #define PRINT_ERR(...) fprintf(stderr, "AUBIO-TESTS ERROR: " __VA_ARGS__) |
---|
| 10 | #define PRINT_MSG(...) fprintf(stdout, __VA_ARGS__) |
---|
| 11 | #define PRINT_DBG(...) fprintf(stderr, __VA_ARGS__) |
---|
| 12 | #define PRINT_WRN(...) fprintf(stderr, "AUBIO-TESTS WARNING: " __VA_ARGS__) |
---|
| 13 | #else |
---|
[474a573] | 14 | #define PRINT_ERR(format, args...) fprintf(stderr, "AUBIO-TESTS ERROR: " format , ##args) |
---|
[248da64] | 15 | #define PRINT_MSG(format, args...) fprintf(stdout, format , ##args) |
---|
| 16 | #define PRINT_DBG(format, args...) fprintf(stderr, format , ##args) |
---|
[474a573] | 17 | #define PRINT_WRN(format, args...) fprintf(stderr, "AUBIO-TESTS WARNING: " format, ##args) |
---|
[dc08c4f] | 18 | #endif |
---|
[474a573] | 19 | |
---|
[8b42c7d] | 20 | #ifndef M_PI |
---|
| 21 | #define M_PI (3.14159265358979323846) |
---|
| 22 | #endif |
---|
| 23 | |
---|
| 24 | #ifndef RAND_MAX |
---|
| 25 | #define RAND_MAX 32767 |
---|
| 26 | #endif |
---|
| 27 | |
---|
[da632d3] | 28 | // are we on windows ? or are we using -std=c99 ? |
---|
| 29 | #if defined(HAVE_WIN_HACKS) || defined(__STRICT_ANSI__) |
---|
[06dba46] | 30 | // http://en.wikipedia.org/wiki/Linear_congruential_generator |
---|
| 31 | // no srandom/random on win32 |
---|
| 32 | |
---|
| 33 | uint_t srandom_seed = 1029; |
---|
| 34 | |
---|
| 35 | void srandom(uint_t new_seed) { |
---|
| 36 | srandom_seed = new_seed; |
---|
| 37 | } |
---|
| 38 | |
---|
| 39 | uint_t random(void) { |
---|
| 40 | srandom_seed = 1664525 * srandom_seed + 1013904223; |
---|
| 41 | return srandom_seed; |
---|
| 42 | } |
---|
| 43 | #endif |
---|
| 44 | |
---|
[158e031] | 45 | void utils_init_random (void); |
---|
| 46 | |
---|
| 47 | void utils_init_random (void) { |
---|
[474a573] | 48 | time_t now = time(0); |
---|
| 49 | struct tm *tm_struct = localtime(&now); |
---|
| 50 | int seed = tm_struct->tm_sec; |
---|
| 51 | //PRINT_WRN("current seed: %d\n", seed); |
---|
| 52 | srandom (seed); |
---|
| 53 | } |
---|