Skip to content

Commit

Permalink
Renaming sparse_algorithm|parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Jan 30, 2024
1 parent 8e1a754 commit 4c118cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions gp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ mod algorithm;
pub mod correlation_models;
mod errors;
pub mod mean_models;
mod sgp_algorithm;
mod sparse_algorithm;

mod parameters;
mod sgp_parameters;
mod sparse_parameters;
mod utils;

pub use algorithm::*;
pub use errors::*;
pub use parameters::*;
pub use sgp_algorithm::*;
pub use sgp_parameters::*;
pub use sparse_algorithm::*;
pub use sparse_parameters::*;
2 changes: 1 addition & 1 deletion gp/src/sgp_algorithm.rs → gp/src/sparse_algorithm.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::algorithm::optimize_params;
use crate::errors::{GpError, Result};
use crate::sgp_parameters::{
use crate::sparse_parameters::{
Inducings, SgpParams, SgpValidParams, SparseMethod, VarianceEstimation,
};
use crate::{correlation_models::*, utils::pairwise_differences};
Expand Down
File renamed without changes.

0 comments on commit 4c118cd

Please sign in to comment.