16 lines
270 B
Rust
16 lines
270 B
Rust
|
// TODO
|
||
|
|
||
|
// Common logic for the ability to calibrate along slices
|
||
|
// Core issues should be orthogonal
|
||
|
// Extend to multithread ?
|
||
|
|
||
|
// Should be used by F+F and non Naive F+R
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
#[test]
|
||
|
fn it_works() {
|
||
|
assert_eq!(2 + 2, 4);
|
||
|
}
|
||
|
}
|