GCC Code Coverage Report


Directory: ./
Coverage: low: ≥ 0% medium: ≥ 75.0% high: ≥ 90.0%
Coverage Exec / Excl / Total
Lines: 100.0% 30 / 0 / 30
Functions: 100.0% 30 / 0 / 30
Branches: -% 0 / 0 / 0

src/comb/ball_box/ida/lib.hpp
Line Branch Exec Source
1 #pragma once
2
3 #include "../../binom/lib.hpp"
4
5 namespace tifa_libs {
6
7 template <class mint, class fact>
8 840 CEXP mint ball_box_ida(u32 ball, u32 box, binom<mint, fact> CR b) NE { return b.mCn(box + ball - 1, box - 1); }
9
10 } // namespace tifa_libs
11