#[cfg(any(
all(
not(feature = "exactarithmetic"),
not(feature = "approximatearithmetic")
),
all(feature = "exactarithmetic", feature = "approximatearithmetic")
))]
pub type LogPolynomial = super::log_polynomial_enum::LogPolynomialEnum;
#[cfg(all(not(feature = "exactarithmetic"), feature = "approximatearithmetic"))]
pub type LogPolynomial = super::log_polynomial_f64::LogPolynomialF64;
#[cfg(all(feature = "exactarithmetic", not(feature = "approximatearithmetic")))]
pub type LogPolynomial = super::log_polynomial_exact::LogPolynomialExact;