Skip to content

Commit

Permalink
Exposed coordinate, point, and isotonic_regression modules as public.
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Jul 8, 2024
1 parent 038649f commit ff740f0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
//! If you have an hour to spare, and are interested in learning more about how online advertising works - you should check out [this lecture](https://vimeo.com/137999578)
//! that I gave in 2015 where I explain how we were able to use pair adjacent violators to solve some fun problems.
/// Pair adjacent violators algorithm for isotonic regression
mod coordinate;
mod point;
mod isotonic_regression;
pub mod coordinate;
pub mod point;
pub mod isotonic_regression;

pub use isotonic_regression::IsotonicRegression;
pub use coordinate::Coordinate;
pub use point::Point;
pub use coordinate::Coordinate;
pub use isotonic_regression::IsotonicRegression;

/// Pair adjacent violators algorithm for isotonic regression

0 comments on commit ff740f0

Please sign in to comment.