mirror of
https://github.com/boostorg/histogram.git
synced 2026-01-30 07:52:11 +00:00
preliminary fix
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
#include <limits>
|
||||
#include <memory>
|
||||
#include <random>
|
||||
#include "utility_histgram.hpp"
|
||||
#include "utility_histogram.hpp"
|
||||
|
||||
using namespace boost::histogram;
|
||||
using boost::mp11::mp_list;
|
||||
@@ -132,9 +132,9 @@ int main() {
|
||||
printf("uniform distribution\n");
|
||||
else
|
||||
printf("normal distribution\n");
|
||||
printf("hs_ss %.3f\n", compare_1d<static_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hs_ss %.3f\n", compare_1d<static_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hs_sd %.3f\n", compare_1d<static_tag, adaptive_storage<>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_1d<dynamic_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_1d<dynamic_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hd_sd %.3f\n", compare_1d<dynamic_tag, adaptive_storage<>>(nfill, itype));
|
||||
}
|
||||
|
||||
@@ -144,9 +144,9 @@ int main() {
|
||||
printf("uniform distribution\n");
|
||||
else
|
||||
printf("normal distribution\n");
|
||||
printf("hs_ss %.3f\n", compare_2d<static_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hs_ss %.3f\n", compare_2d<static_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hs_sd %.3f\n", compare_2d<static_tag, adaptive_storage<>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_2d<dynamic_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_2d<dynamic_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hd_sd %.3f\n", compare_2d<dynamic_tag, adaptive_storage<>>(nfill, itype));
|
||||
}
|
||||
|
||||
@@ -156,9 +156,9 @@ int main() {
|
||||
printf("uniform distribution\n");
|
||||
else
|
||||
printf("normal distribution\n");
|
||||
printf("hs_ss %.3f\n", compare_3d<static_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hs_ss %.3f\n", compare_3d<static_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hs_sd %.3f\n", compare_3d<static_tag, adaptive_storage<>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_3d<dynamic_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_3d<dynamic_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hd_sd %.3f\n", compare_3d<dynamic_tag, adaptive_storage<>>(nfill, itype));
|
||||
}
|
||||
|
||||
@@ -168,9 +168,9 @@ int main() {
|
||||
printf("uniform distribution\n");
|
||||
else
|
||||
printf("normal distribution\n");
|
||||
printf("hs_ss %.3f\n", compare_6d<static_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hs_ss %.3f\n", compare_6d<static_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hs_sd %.3f\n", compare_6d<static_tag, adaptive_storage<>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_6d<dynamic_tag, array_storage<int>>(nfill, itype));
|
||||
printf("hd_ss %.3f\n", compare_6d<dynamic_tag, std::vector<int>>(nfill, itype));
|
||||
printf("hd_sd %.3f\n", compare_6d<dynamic_tag, adaptive_storage<>>(nfill, itype));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user