Changeset 358 for cpp/frams/model/similarity
- Timestamp:
- 04/18/15 16:33:54 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/similarity/SVD/lapack.cpp
-
Property
svn:eol-style
set to
native
r350 r358 43 43 // the use of this software, even if advised of the possibility of such damage. 44 44 // 45 // M*/45 // 46 46 /* 47 47 * AutoBuffer from https://github.com/Itseez/opencv/blob/master/modules/core/include/opencv2/core/utility.hpp 48 48 * VBLAS, JacobiSVDImpl_ from https://github.com/Itseez/opencv/blob/master/modules/core/src/lapack.cpp 49 49 * changes: 50 * - "RNG rng(0x12345678)" replaced with "srand 50 * - "RNG rng(0x12345678)" replaced with "srand(time(NULL))" 51 51 * - "rng.next()" replaced with "rand()" 52 * MK, 04.2015: 53 * - commented out "srand(time(NULL))" - this line would affect everything else that uses the standard global r.n.g., and would introduce uncontrolled indeterminism 52 54 */ 53 55 #include <cstdlib> … … 372 374 return; 373 375 374 srand(time(NULL));376 //srand(time(NULL)); 375 377 for (i = 0; i < n1; i++) 376 378 { -
Property
svn:eol-style
set to
Note: See TracChangeset
for help on using the changeset viewer.