rtsam 0.1.4

Real Time Smoothing and Mapping (RTSAM) in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::inference::factor::*;
use crate::inference::factor_graph::*;

pub struct ExpressionFactor {}

impl NonlinearFactor for ExpressionFactor {}

impl Factor for ExpressionFactor {
    fn keys(&mut self) -> &mut Vec<KeyType> {
        unimplemented!()
    }
}

impl SimpleFactorGraph<ExpressionFactor> {}