tiny-solver 0.13.0

Factor graph solver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
import numpy as np

class Factor: ...

class BetweenFactorSE2(Factor):
    def __init__(self, x: float, y: float, theta: float) -> None: ...

class PriorFactor(Factor):
    def __init__(self, x: np.ndarray) -> None: ...

class PyFactor(Factor):
    def __init__(self, func: callable) -> None: ...