Drop eigenvalue logging from symmetric_kernel

This commit is contained in:
Aaron Fenyes 2025-07-29 00:45:33 -07:00
parent ca57fbce86
commit eafb133f8d

View file

@ -2,10 +2,6 @@ use lazy_static::lazy_static;
use nalgebra::{Const, DMatrix, DVector, DVectorView, Dyn, SymmetricEigen};
use std::fmt::{Display, Error, Formatter};
/* DEBUG */
#[cfg(not(feature = "dev"))]
use sycamore::prelude::console_log;
// --- elements ---
pub fn point(x: f64, y: f64, z: f64) -> DVector<f64> {
@ -168,11 +164,6 @@ impl ConfigSubspace {
).collect::<Vec<_>>().as_slice()
);
/* DEBUG */
// print the eigenvalues
#[cfg(not(feature = "dev"))]
console_log!("Eigenvalues used to find kernel:{}", eig.eigenvalues);
// express the basis in the standard coordinates
let basis_std = proj_to_std * &basis_proj;