Skip to content

Commit cbe5f69

Browse files
committed
refactor(periodic): remove pseudo-arclength continuation
Use direct cached-seed correction for Hénon continuation and remove the pseudo-arclength fallback, exports, and tests. Update documentation to record the reduced fold-tracking capability.
1 parent 5a5ee37 commit cbe5f69

6 files changed

Lines changed: 21 additions & 558 deletions

File tree

src/boundary_map/manifold/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ fn cache_key(
4040
fn validate_manifold_point_spacing(spacing_tol: f64) -> Result<f64, String> {
4141
if !spacing_tol.is_finite() || !(1e-4..=0.2).contains(&spacing_tol) {
4242
return Err(
43-
"Maximum manifold point spacing must be finite and between 0.0001 and 0.2."
44-
.to_string(),
43+
"Maximum manifold point spacing must be finite and between 0.0001 and 0.2.".to_string(),
4544
);
4645
}
4746
Ok(spacing_tol)

0 commit comments

Comments
 (0)