fixed test

This commit is contained in:
Rendo 2025-11-09 19:09:37 +05:00
commit 9a33538499

View file

@ -1,6 +1,7 @@
use fapprox::learner::Learner;
mod formula;
mod learner;
mod node;
#[cfg(test)]
mod tests;
@ -12,7 +13,7 @@ fn main() {
None,
Some(10000),
);
let formula = learner.calculate_formula();
let formula = learner.calculate_formula_debug();
println!("{:?}", formula.as_text());
formula.display_tree();
}