From f5bf8195f01a3139880dfa95a3585cca34de2798 Mon Sep 17 00:00:00 2001 From: Rutherther Date: Mon, 6 Oct 2025 15:21:16 +0200 Subject: [PATCH] feat: remove min, max from bounded perturbation --- env/src/perturbation/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/env/src/perturbation/mod.rs b/env/src/perturbation/mod.rs index df04b6377949baa43ea0eb1a9e9eb4cfadd8b90e..aea089bdb81ec726c567f42deb6981a65ede0159 100644 --- a/env/src/perturbation/mod.rs +++ b/env/src/perturbation/mod.rs @@ -65,8 +65,6 @@ pub enum BoundedPerturbationStrategy { } pub struct BoundedPerturbation>> { - min: SVector, - max: SVector, min_max: SVector<(f64, f64), LEN>, strategy: BoundedPerturbationStrategy, perturbation: T, @@ -81,8 +79,6 @@ impl>> ) -> Self { let min_max = min.zip_map(&max, |min, max| (min, max)); Self { - min, - max, min_max, strategy, perturbation