Changeset cb288f2
- Timestamp:
- Nov 29, 2018, 12:28:11 AM (6 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
- Children:
- bab4611
- Parents:
- d22b568
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/utils_tests.h
rd22b568 rcb288f2 63 63 time_t now = time(0); 64 64 struct tm *tm_struct = localtime(&now); 65 int seed = tm_struct->tm_sec; 65 size_t **tm_address = (void*)&tm_struct; 66 int seed = tm_struct->tm_sec + (size_t)tm_address; 66 67 //PRINT_WRN("current seed: %d\n", seed); 67 68 srandom (seed);
Note: See TracChangeset
for help on using the changeset viewer.