Skip to content

Commit

Permalink
module reorg and bump version before publish
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Jul 8, 2024
1 parent 77fa416 commit 86c11ee
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "pav_regression"
description = "The pair adjacent violators algorithm for isotonic regression"
homepage = "https://github.com/sanity/pav.rs"
repository = "https://github.com/sanity/pav.rs"
version = "0.5.0"
version = "0.5.1"
authors = ["Ian Clarke <[email protected]>"]
edition = "2018"
license = "LGPL-3.0-or-later"
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/pav/isotonic_regression.rs → src/isotonic_regression.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use serde::Serialize;
use std::fmt::{Display, Formatter};
use thiserror::Error;
use super::coordinate::Coordinate;
use super::point::{Point, interpolate_two_points};
use crate::coordinate::Coordinate;
use crate::point::{Point, interpolate_two_points};

/// Errors that can occur during isotonic regression
#[derive(Error, Debug)]
Expand Down
6 changes: 0 additions & 6 deletions src/pav.rs

This file was deleted.

2 changes: 1 addition & 1 deletion src/pav/point.rs → src/point.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use serde::Serialize;
use super::coordinate::Coordinate;
use crate::coordinate::Coordinate;

/// A point in 2D cartesian space
#[derive(Debug, PartialEq, Copy, Clone, Serialize)]
Expand Down

0 comments on commit 86c11ee

Please sign in to comment.