-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: MTJ stores measurement as jagged vector (#1512)
Addresses #1516. ``` | x x x | x | x x | ... ^ ^ ^ M1,D=3 M2,D=1 M3,D=2 ``` BREAKING CHANGE: `Acts::MultiTrajectory` measurement access methods change: ```diff - constexpr auto measurement(IndexType measIdx) const; + template <size_t measdim> + constexpr auto measurement(IndexType measIdx) const; ``` and ```diff - constexpr auto measurementCovariance(IndexType covIdx) + template <size_t measdim> + constexpr auto measurementCovariance(IndexType covIdx) ```
- Loading branch information
1 parent
5c07814
commit 5b802fc
Showing
19 changed files
with
508 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.