# Public estimator surface for ferrolearn-linear.
#
# Every entry must either:
# - Appear by leaf name in a conformance test (any `tests/*.rs` file)
# - OR be listed in `_surface_exclusions.toml` with a reason
#
# Adding a new public estimator to this crate: add it here AND write at
# least one conformance test (or document an exclusion). The
# `conformance_surface_coverage` test fails the build if you skip both.
[[]]
= "ferrolearn_linear::LinearRegression"
= "direct-linear"
= "linear_regression"
[[]]
= "ferrolearn_linear::Ridge"
= "direct-linear"
= "ridge"
[[]]
= "ferrolearn_linear::Lasso"
= "iterative-linear"
= "lasso"
[[]]
= "ferrolearn_linear::ElasticNet"
= "iterative-linear"
= "elastic_net"
[[]]
= "ferrolearn_linear::LogisticRegression"
= "logistic"
= "logistic_regression"