Skip to content

Commit

Permalink
Including missing bitpack runs
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Jun 8, 2023
1 parent bd0a950 commit 0d9a8f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/root/lhcb_analysis/lhcb.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -598,13 +598,13 @@ auto main(int argc, const char* argv[]) -> int
testAnalysis<MakeBitpacked<fullExp, fullMan>>(inputFile, fmt::format("BP_SoA_{}e{}", fullMan, fullExp));

// using namespace boost::mp11;
// mp_for_each<mp_reverse<mp_drop_c<mp_iota_c<fullExp>, 1>>>(
// mp_for_each<mp_reverse<mp_iota_c<fullExp>>>(
// [&](auto ic)
// {
// constexpr auto exp = decltype(ic)::value;
// testAnalysis<MakeBitpacked<exp, fullMan>>(inputFile, fmt::format("BP_SoA_{}e{}", fullMan, exp));
// });
// mp_for_each<mp_reverse<mp_drop_c<mp_iota_c<fullMan>, 1>>>(
// mp_for_each<mp_reverse<mp_iota_c<fullMan>>>(
// [&](auto ic)
// {
// constexpr auto man = decltype(ic)::value;
Expand Down

0 comments on commit 0d9a8f4

Please sign in to comment.