Skip to content

Commit

Permalink
perf: Improve ConstrainedStep footprint after #2532 (#2561)
Browse files Browse the repository at this point in the history
Fixes an oversight in #2532
  • Loading branch information
andiwand authored Oct 20, 2023
1 parent 187b83c commit 185d0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/include/Acts/Propagator/ConstrainedStep.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class ConstrainedStep {
inline static constexpr auto kNotSet = std::numeric_limits<Scalar>::max();

/// the step size tuple
std::array<Scalar, 4> m_values = {kNotSet, kNotSet, kNotSet, kNotSet};
std::array<Scalar, 3> m_values = {kNotSet, kNotSet, kNotSet};
/// the accuracy value - this can vary up and down given a good step estimator
Scalar m_accuracy = kNotSet;
};
Expand Down

0 comments on commit 185d0da

Please sign in to comment.