| 61 | } |
| 62 | |
| 63 | int main(int argc, char** argv) { |
| 64 | constexpr unsigned nfill = 6000000; |
| 65 | printf("1D\n"); |
| 66 | printf("uniform distribution\n"); |
| 67 | compare_1d(nfill, 0); |
| 68 | printf("normal distribution\n"); |
| 69 | compare_1d(nfill, 1); |
| 70 | |
| 71 | printf("2D\n"); |
| 72 | printf("uniform distribution\n"); |
| 73 | compare_2d(nfill, 0); |
| 74 | printf("normal distribution\n"); |
| 75 | compare_2d(nfill, 1); |
| 76 | } |
nothing calls this directly
no test coverage detected