copp 0.2.2

Convex-objective path parameterization for robotic trajectory planning.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""TOPP2 reachability-analysis solver."""

import numpy as np
from numpy.typing import NDArray

from .._native import (
    ReachSet2 as ReachSet,
    ReachSet2Options as Options,
    Topp2Problem as Problem,
)

def solve(problem: Problem, options: Options | None = None) -> NDArray[np.float64]:
    """Solve a TOPP2 problem with reachability analysis."""
    ...

__all__: list[str]