removed self from PrepareScratch trait

This commit is contained in:
Jean-Philippe Bossuat
2025-10-09 17:13:43 +02:00
parent 2884935a38
commit 312ecc7f2f
11 changed files with 17 additions and 17 deletions

View File

@@ -22,7 +22,7 @@ pub use lwe_to_glwe_ksk::*;
use poulpy_hal::layouts::{Backend, Module, Scratch};
pub trait PrepareScratchSpace<B: Backend, T> {
fn prepare_scratch_space(&self, module: &Module<B>, infos: &T) -> usize;
fn prepare_scratch_space(module: &Module<B>, infos: &T) -> usize;
}
pub trait PrepareAlloc<B: Backend, T> {