use crate::kernel::Float;
pub struct RdftRankGeq2Solver<T: Float> {
_marker: core::marker::PhantomData<T>,
}
impl<T: Float> Default for RdftRankGeq2Solver<T> {
fn default() -> Self {
Self::new()
}
}
impl<T: Float> RdftRankGeq2Solver<T> {
#[must_use]
pub fn new() -> Self {
Self {
_marker: core::marker::PhantomData,
}
}
#[must_use]
pub fn name(&self) -> &'static str {
"rdft-rank-geq2"
}
}