2024-12-22 11:47:44 +00:00
|
|
|
//! `main` is just a wrapper to handle configuration.
|
|
|
|
|
|
2025-01-13 03:14:43 +00:00
|
|
|
#[cfg(not(feature = "build-mpfr"))]
|
2024-12-22 11:47:44 +00:00
|
|
|
fn main() {
|
|
|
|
|
eprintln!("multiprecision not enabled; skipping extensive tests");
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-13 03:14:43 +00:00
|
|
|
#[cfg(feature = "build-mpfr")]
|
2024-12-22 11:47:44 +00:00
|
|
|
mod run;
|
|
|
|
|
|
2025-01-13 03:14:43 +00:00
|
|
|
#[cfg(feature = "build-mpfr")]
|
2024-12-22 11:47:44 +00:00
|
|
|
fn main() {
|
|
|
|
|
run::run();
|
|
|
|
|
}
|