pub trait HalfspaceIntersectionAlgorithms<R: Runtime> {
// Required method
fn halfspace_intersection(
&self,
halfspaces: &Tensor<R>,
interior_point: &Tensor<R>,
) -> Result<HalfspaceIntersection<R>>;
}Expand description
Algorithmic contract for halfspace intersection.