| 46 | |
| 47 | } |
| 48 | void initialData(float* ip,int size) |
| 49 | { |
| 50 | time_t t; |
| 51 | srand((unsigned )time(&t)); |
| 52 | for(int i=0;i<size;i++) |
| 53 | { |
| 54 | ip[i]=(float)(rand()&0xffff)/1000.0f; |
| 55 | } |
| 56 | } |
| 57 | void initialData_int(int* ip, int size) |
| 58 | { |
| 59 | time_t t; |
nothing calls this directly
no outgoing calls
no test coverage detected