copp 0.2.1

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
17
"""TOPP2 reachable-set construction."""

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

def backward(problem: Problem, options: Options | None = None) -> ReachSet:
    """Compute backward-only TOPP2 reachable intervals."""
    ...

def bidirectional(problem: Problem, options: Options | None = None) -> ReachSet:
    """Compute bidirectional TOPP2 reachable intervals."""
    ...

__all__: list[str]