Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/convolution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ use std::{
/// # Example
///
/// ```
/// use ac_library_rs::ModInt1000000007 as Mint;
/// use ac_library::ModInt1000000007 as Mint;
/// use proconio::{input, source::once::OnceSource};
///
/// input! {
Expand All @@ -78,7 +78,7 @@ use std::{
/// }
///
/// assert_eq!(
/// ac_library_rs::convolution(&a, &b),
/// ac_library::convolution(&a, &b),
/// [
/// Mint::new(-1),
/// Mint::new(-4),
Expand Down Expand Up @@ -155,7 +155,7 @@ where
/// # Example
///
/// ```
/// use ac_library_rs::{Mod1000000007 as M, Modulus as _};
/// use ac_library::{Mod1000000007 as M, Modulus as _};
/// use proconio::{input, source::once::OnceSource};
///
/// const M: i32 = M::VALUE as _;
Expand All @@ -172,7 +172,7 @@ where
/// }
///
/// assert_eq!(
/// ac_library_rs::convolution::convolution_raw::<_, M>(&a, &b),
/// ac_library::convolution::convolution_raw::<_, M>(&a, &b),
/// [
/// (-1i32).rem_euclid(M),
/// (-4i32).rem_euclid(M),
Expand Down Expand Up @@ -234,7 +234,7 @@ where
/// }
///
/// assert_eq!(
/// ac_library_rs::convolution_i64(&a, &b),
/// ac_library::convolution_i64(&a, &b),
/// [-1, -4, -10, -12, -9],
/// );
/// ```
Expand Down