Skip to content

Commit 54a54fd

Browse files
authored
Merge pull request #14 from qryxip/modint
Implement `modint`
2 parents 6f6f530 + c828591 commit 54a54fd

File tree

2 files changed

+750
-0
lines changed

2 files changed

+750
-0
lines changed

src/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ pub use dsu::Dsu;
2222
pub use fenwicktree::FenwickTree;
2323
pub use math::{crt, floor_sum, inv_mod, pow_mod};
2424
pub use mincostflow::MinCostFlowGraph;
25+
pub use modint::{
26+
Barrett, DefaultId, DynamicModInt, Id, Mod1000000007, Mod998244353, ModInt, ModInt1000000007,
27+
ModInt998244353, Modulus, RemEuclidU32, StaticModInt,
28+
};
2529
pub use string::{
2630
lcp_array, lcp_array_arbitrary, suffix_array, suffix_array_arbitrary, suffix_array_manual,
2731
z_algorithm, z_algorithm_arbitrary,

0 commit comments

Comments
 (0)