環境
- rustc: 1.56.0-nightly
エラーメッセージ
unconstrained generic constant try adding a `where` bound using this expression: `where [(); 2*TRGSW::<N>::L]:`
ソースコード
rust
1pub struct TRGSW<const N: usize>;// この型を使った関数呼び出しで配列サイズを確定するためのconstGeneric 2impl<const N: usize> TRGSW<N> { 3 const BGBIT: u32 = 6; 4 const BG: usize = 2_i32.pow(TRGSW::BGBIT) as usize; 5 const BG_INV: f32 = 1.0 / (TRGSW::BG as f32); 6 const L: usize = 3; 7 pub fn new() -> Self { 8 TRGSW::<N> 9 } 10 pub fn binary_pol2u32_pol<const M: usize>(pol: Polynomial<Binary, M>) -> Polynomial<u32, M> { 11 pol!(array![ i => pol.coef_(i).to_u32().unwrap() ;M]) 12 } 13 fn u32_pol2binary_pol<const M: usize>(pol: Polynomial<u32, M>) -> Polynomial<Binary, M> { 14 pol!(array![ i => Binary::from(pol.coef_(i)) ; M]) 15 } 16} 17impl<const N: usize> CryptoCore for TRGSW<N> { 18 // ここで例のエラーが出る。 19 type Representation = Encrypted< 20 [Polynomial<Torus, N>; 2*TRGSW::<N>::L], 21 [Polynomial<Torus, N>; 2*TRGSW::<N>::L], 22 >; 23}
やったこと
2*TRGSW::<N>::Lを上で宣言した定数を計算したものに置き換えるとエラーはなくなる。
rust
1type Representation = Encrypted< 2 [Polynomial<Torus, N>; 2*3], 3 [Polynomial<Torus, N>; 2*3], 4 >;
掲載のコードだとpol!など未定義のアイテムによりコンパイルが通らないのですが、問題が再現する完全なソースコードの掲載をお願いできないでしょうか
回答1件
あなたの回答
tips
プレビュー