MCPcopy Create free account
hub / github.com/boostorg/histogram / main

Function main

test/speed_root.cpp:93–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93int main(int argc, char** argv) {
94 constexpr unsigned nfill = 6000000;
95
96 printf("1D\n");
97 printf("uniform distribution\n");
98 compare_1d(nfill, 0);
99 printf("normal distribution\n");
100 compare_1d(nfill, 1);
101
102 printf("2D\n");
103 printf("uniform distribution\n");
104 compare_2d(nfill, 0);
105 printf("normal distribution\n");
106 compare_2d(nfill, 1);
107
108 printf("3D\n");
109 printf("uniform distribution\n");
110 compare_3d(nfill, 0);
111 printf("normal distribution\n");
112 compare_3d(nfill, 1);
113
114 printf("6D\n");
115 printf("uniform distribution\n");
116 compare_6d(nfill, 0);
117 printf("normal distribution\n");
118 compare_6d(nfill, 1);
119}

Callers

nothing calls this directly

Calls 4

compare_1dFunction · 0.70
compare_2dFunction · 0.70
compare_3dFunction · 0.70
compare_6dFunction · 0.70

Tested by

no test coverage detected