equal
deleted
inserted
replaced
369 /// will contain the actual |
369 /// will contain the actual |
370 /// total running time. |
370 /// total running time. |
371 ///\return The average running time of \c f. |
371 ///\return The average running time of \c f. |
372 |
372 |
373 template<class F> |
373 template<class F> |
374 TimeStamp runningTimeTest(const F &f,double min_time=10,int *num = NULL, |
374 TimeStamp runningTimeTest(F f,double min_time=10,int *num = NULL, |
375 TimeStamp *full_time=NULL) |
375 TimeStamp *full_time=NULL) |
376 { |
376 { |
377 Timer t; |
377 Timer t; |
378 TimeStamp full; |
378 TimeStamp full; |
379 int total=0; |
379 int total=0; |