Skip to content

Fix import paths in examples for convolution module #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 9, 2025
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