Drop eigenvalue logging from symmetric_kernel
All checks were successful
/ test (pull_request) Successful in 3m30s
All checks were successful
/ test (pull_request) Successful in 3m30s
This commit is contained in:
parent
ca57fbce86
commit
eafb133f8d
1 changed files with 0 additions and 9 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue