Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
Siel committed May 10, 2024
1 parent a59a710 commit 6096ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routines/output.rs
Expand Up @@ -149,7 +149,7 @@ impl NPResult {
pub fn write_pred(&self, equation: &Equation, idelta: f64, tad: f64) {
tracing::info!("Writing predictions...");
let data = self.data.expand(idelta, tad);
println!("{:?}", data);
// println!("{:?}", data);

let theta: Array2<f64> = self.theta.clone();
let w: Array1<f64> = self.w.clone();
Expand Down

0 comments on commit 6096ca6

Please sign in to comment.