File indexing completed on 2026-05-27 07:23:55
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011
0012 #include "detray/algebra/common/boolean.hpp"
0013 #include "detray/algebra/common/math.hpp"
0014 #include "detray/algebra/generic/impl/generic_matrix.hpp"
0015 #include "detray/algebra/generic/impl/generic_transform3.hpp"
0016 #include "detray/algebra/generic/impl/generic_vector.hpp"
0017
0018
0019 #include "detray/algebra/generic/algorithms/matrix/decomposition/partial_pivot_lud.hpp"
0020 #include "detray/algebra/generic/algorithms/matrix/determinant/cofactor.hpp"
0021 #include "detray/algebra/generic/algorithms/matrix/determinant/hard_coded.hpp"
0022 #include "detray/algebra/generic/algorithms/matrix/determinant/partial_pivot_lud.hpp"
0023 #include "detray/algebra/generic/algorithms/matrix/inverse/cofactor.hpp"
0024 #include "detray/algebra/generic/algorithms/matrix/inverse/hard_coded.hpp"
0025 #include "detray/algebra/generic/algorithms/matrix/inverse/partial_pivot_lud.hpp"
0026 #include "detray/algebra/generic/algorithms/utils/algorithm_selector.hpp"