use super::Intersection;
pub mod compound_curve_intersection;
pub mod curve_intersection_bfgs;
pub mod curve_intersection_problem;
pub mod curve_intersection_solver_options;
pub mod intersection_compound_curve;
pub mod intersection_curve_curve;
pub use compound_curve_intersection::*;
pub use curve_intersection_bfgs::*;
pub use curve_intersection_problem::*;
pub use curve_intersection_solver_options::*;
pub type CurveCurveIntersection<P, T> = Intersection<P, T, T>;