finishing bitvector

This commit is contained in:
2024-01-02 14:05:28 +01:00
parent e42987061f
commit 50b2447535
4 changed files with 69 additions and 6 deletions

View File

@@ -65,6 +65,10 @@ N pow(const N &x, N i);
template <typename N>
N powmod(const N &x, N i, const N &m);
template <typename N>
N multmod(N x, N y, const N &m);
}//namespace
#endif