Skip to content

Commit

Permalink
Move Infix to Postfix algorithm to math section
Browse files Browse the repository at this point in the history
  • Loading branch information
bgdnrvsky committed Jul 30, 2024
1 parent 15976e2 commit e952c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/math/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ pub use self::greatest_common_divisor::{
greatest_common_divisor_stein,
};
pub use self::huber_loss::huber_loss;
pub use self::infix_to_postfix::infix_to_postfix;
pub use self::interest::{compound_interest, simple_interest};
pub use self::interpolation::{lagrange_polynomial_interpolation, linear_interpolation};
pub use self::interquartile_range::interquartile_range;
Expand Down Expand Up @@ -176,6 +177,5 @@ pub use self::trig_functions::sine_no_radian_arg;
pub use self::trig_functions::tan;
pub use self::trig_functions::tan_no_radian_arg;
pub use self::vector_cross_product::cross_product;
pub use self::infix_to_postfix::infix_to_postfix;
pub use self::vector_cross_product::vector_magnitude;
pub use self::zellers_congruence_algorithm::zellers_congruence_algorithm;

0 comments on commit e952c9e

Please sign in to comment.