Skip to content

Commit

Permalink
Improved the module structure of the crate to better align with Rust …
Browse files Browse the repository at this point in the history
…best practices.
  • Loading branch information
sanity committed Jul 8, 2024
1 parent c5d25fb commit 77fa416
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,13 @@
//! 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.
/// Module containing the `Coordinate` trait definition.
pub mod coordinate;

/// Module containing the `Point` struct definition.
pub mod point;

/// Module containing the `IsotonicRegression` struct and implementation.
pub mod isotonic_regression;

pub use coordinate::Coordinate;
Expand Down

0 comments on commit 77fa416

Please sign in to comment.