Remove info print statements

This commit is contained in:
Vecna 2024-04-19 01:34:24 -04:00
parent f0133ce0dc
commit e889cba878
1 changed files with 0 additions and 11 deletions

View File

@ -311,17 +311,6 @@ impl Analyzer for NormalAnalyzer {
let negative_reports_sd = sd_vec[1];
let mvn = MultivariateNormal::new(mean_vec, cov_mat).unwrap();
println!(
"evaluate mvn.pdf of [{},{}]",
bridge_ips_today as f64, negative_reports_today as f64
);
println!(
"{}",
mvn.pdf(&DVector::from_vec(vec![
bridge_ips_today as f64,
negative_reports_today as f64
]))
);
if mvn.pdf(&DVector::from_vec(vec![
bridge_ips_today as f64,
negative_reports_today as f64,