mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-28 19:22:12 +00:00
refactoring, allow iteration over axis::any
This commit is contained in:
@@ -115,11 +115,11 @@ int main() {
|
||||
compare_1d<histogram<Static,mpl::vector<axis::regular<>>,
|
||||
adaptive_storage>>(6000000, itype));
|
||||
printf("hd_ss %.3f\n",
|
||||
compare_1d<histogram<Dynamic, builtin_axes,
|
||||
compare_1d<histogram<Dynamic, axis::builtins,
|
||||
array_storage<int>>>(
|
||||
6000000, itype));
|
||||
printf("hd_sd %.3f\n",
|
||||
compare_1d<histogram<Dynamic, builtin_axes, adaptive_storage>>(
|
||||
compare_1d<histogram<Dynamic, axis::builtins, adaptive_storage>>(
|
||||
6000000, itype));
|
||||
}
|
||||
|
||||
@@ -138,11 +138,11 @@ int main() {
|
||||
mpl::vector<axis::regular<>, axis::regular<>>,
|
||||
adaptive_storage>>(6000000, itype));
|
||||
printf("hd_ss %.3f\n",
|
||||
compare_2d<histogram<Dynamic, builtin_axes,
|
||||
compare_2d<histogram<Dynamic, axis::builtins,
|
||||
array_storage<int>>>(
|
||||
6000000, itype));
|
||||
printf("hd_sd %.3f\n",
|
||||
compare_2d<histogram<Dynamic, builtin_axes, adaptive_storage>>(
|
||||
compare_2d<histogram<Dynamic, axis::builtins, adaptive_storage>>(
|
||||
6000000, itype));
|
||||
}
|
||||
|
||||
@@ -161,11 +161,11 @@ int main() {
|
||||
mpl::vector<axis::regular<>, axis::regular<>, axis::regular<>>,
|
||||
adaptive_storage>>(6000000, itype));
|
||||
printf("hd_ss %.3f\n",
|
||||
compare_3d<histogram<Dynamic, builtin_axes,
|
||||
compare_3d<histogram<Dynamic, axis::builtins,
|
||||
array_storage<int>>>(
|
||||
6000000, itype));
|
||||
printf("hd_sd %.3f\n",
|
||||
compare_3d<histogram<Dynamic, builtin_axes, adaptive_storage>>(
|
||||
compare_3d<histogram<Dynamic, axis::builtins, adaptive_storage>>(
|
||||
6000000, itype));
|
||||
}
|
||||
|
||||
@@ -186,11 +186,11 @@ int main() {
|
||||
axis::regular<>, axis::regular<>, axis::regular<>>,
|
||||
adaptive_storage>>(6000000, itype));
|
||||
printf("hd_ss %.3f\n",
|
||||
compare_6d<histogram<Dynamic, builtin_axes,
|
||||
compare_6d<histogram<Dynamic, axis::builtins,
|
||||
array_storage<int>>>(
|
||||
6000000, itype));
|
||||
printf("hd_sd %.3f\n",
|
||||
compare_6d<histogram<Dynamic, builtin_axes, adaptive_storage>>(
|
||||
compare_6d<histogram<Dynamic, axis::builtins, adaptive_storage>>(
|
||||
6000000, itype));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user