From eafb133f8da8b35a297ff5b057f3a9ab04113cdc Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Tue, 29 Jul 2025 00:45:33 -0700 Subject: [PATCH] Drop eigenvalue logging from `symmetric_kernel` --- app-proto/src/engine.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/app-proto/src/engine.rs b/app-proto/src/engine.rs index 9d238a3..55051fe 100644 --- a/app-proto/src/engine.rs +++ b/app-proto/src/engine.rs @@ -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 { @@ -168,11 +164,6 @@ impl ConfigSubspace { ).collect::>().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;