Source code for hiten.algorithms.poincare.core.interfaces
from abc import ABC
from typing import Tuple
from hiten.algorithms.types.core import (ConfigT, OutputsT, ProblemT,
ResultT, _HitenBaseInterface)
class _PoincareBaseInterface(
_HitenBaseInterface[
ConfigT,
ProblemT,
ResultT,
OutputsT
]
):
"""Shared functionality for poincare map interfaces."""
pass