WIP: Manipulate the assembly #29

Draft
Vectornaut wants to merge 8 commits from tangent-space into main
Showing only changes of commit 90834fbb93 - Show all commits

View File

@ -111,9 +111,14 @@ impl ConfigSubspace {
) )
) )
); );
/* DEBUG */
// print the eigenvalues
#[cfg(all(target_family = "wasm", target_os = "unknown"))]
console::log_1(&JsValue::from( console::log_1(&JsValue::from(
format!("Hessian eigenvalues: {}", eig.eigenvalues) format!("Eigenvalues used to find kernel: {}", eig.eigenvalues)
)); /* DEBUG */ ));
ConfigSubspace(basis.collect()) ConfigSubspace(basis.collect())
} }