We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 16875d3 + 8e18784 commit d2b35acCopy full SHA for d2b35ac
src/convolution.rs
@@ -8,9 +8,9 @@ macro_rules! modulus {
8
const VALUE: u32 = $name as _;
9
const HINT_VALUE_IS_PRIME: bool = true;
10
11
- fn butterfly_cache() -> &'static ::std::thread::LocalKey<::std::cell::RefCell<::std::option::Option<crate::modint::ButterflyCache<Self>>>> {
+ fn butterfly_cache() -> &'static ::std::thread::LocalKey<::std::cell::RefCell<::std::option::Option<$crate::modint::ButterflyCache<Self>>>> {
12
thread_local! {
13
- static BUTTERFLY_CACHE: ::std::cell::RefCell<::std::option::Option<crate::modint::ButterflyCache<$name>>> = ::std::default::Default::default();
+ static BUTTERFLY_CACHE: ::std::cell::RefCell<::std::option::Option<$crate::modint::ButterflyCache<$name>>> = ::std::default::Default::default();
14
}
15
&BUTTERFLY_CACHE
16
0 commit comments