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
17
18
"""TOPP3 linear-objective approximation backed by Clarabel."""

from .._native import (
    ClarabelOptions as Options,
    Copp3ClarabelResult as Result,
    Profile3rd as Profile,
    Topp3Problem as Problem,
)

def solve(problem: Problem, options: Options | None = None) -> Profile:
    """Solve a TOPP3 problem with the Clarabel LP backend."""
    ...

def solve_expert(problem: Problem, options: Options | None = None) -> Result:
    """Solve TOPP3-LP and return raw Clarabel diagnostics."""
    ...

__all__: list[str]