From 2f3fc2ed6ea8f170f983452435f87ed62bf1e83c Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Thu, 23 Jan 2025 15:28:54 -0800 Subject: [PATCH] Move a stray declaration into a commented section --- app-proto/src/engine.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-proto/src/engine.rs b/app-proto/src/engine.rs index 57243b8..1c32417 100644 --- a/app-proto/src/engine.rs +++ b/app-proto/src/engine.rs @@ -639,11 +639,11 @@ mod tests { #[test] fn tangent_test_kaleidocycle() { - const SCALED_TOL: f64 = 1.0e-12; // set up a kaleidocycle, made of points with fixed distances between // them, and find its tangent space const N_POINTS: usize = 12; const N_HINGES: usize = 6; + const SCALED_TOL: f64 = 1.0e-12; let gram = { let mut gram_to_be = PartialMatrix::new(); for block in (0..N_POINTS).step_by(2) {