logo
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
use super::Kernel;
use crate::CoordNum;

/// Simple kernel provides the direct implementation of the
/// predicates. These are meant to be used with exact
/// arithmetic signed tpyes (eg. i32, i64).
#[derive(Default, Debug)]
pub struct SimpleKernel;

impl<T: CoordNum> Kernel<T> for SimpleKernel {}