Loading src/TNL/Matrices/Multidiagonal.h +2 −2 Original line number Diff line number Diff line Loading @@ -35,8 +35,8 @@ class Multidiagonal : public Matrix< Real, Device, Index, RealAllocator > using RealAllocatorType = RealAllocator; using IndexAllocatorType = IndexAllocator; using BaseType = Matrix< Real, Device, Index, RealAllocator >; using ValuesHolderType = typename BaseType::ValuesHolderType; using ValuesViewType = typename ValuesHolderType::ViewType; using ValuesVectorType = typename BaseType::ValuesVectorType; using ValuesViewType = typename ValuesVectorType::ViewType; using IndexerType = details::MultidiagonalMatrixIndexer< IndexType, RowMajorOrder >; using DiagonalsShiftsType = Containers::Vector< IndexType, DeviceType, IndexType, IndexAllocatorType >; using DiagonalsShiftsView = typename DiagonalsShiftsType::ViewType; Loading src/TNL/Matrices/Tridiagonal.h +2 −2 Original line number Diff line number Diff line Loading @@ -34,8 +34,8 @@ class Tridiagonal : public Matrix< Real, Device, Index, RealAllocator > using RealAllocatorType = RealAllocator; using BaseType = Matrix< Real, Device, Index, RealAllocator >; using IndexerType = details::TridiagonalMatrixIndexer< IndexType, RowMajorOrder >; using ValuesHolderType = typename BaseType::ValuesHolderType; using ValuesViewType = typename ValuesHolderType::ViewType; using ValuesVectorType = typename BaseType::ValuesVectorType; using ValuesViewType = typename ValuesVectorType::ViewType; using ViewType = TridiagonalMatrixView< Real, Device, Index, RowMajorOrder >; using ConstViewType = TridiagonalMatrixView< typename std::add_const< Real >::type, Device, Index, RowMajorOrder >; using RowView = TridiagonalMatrixRowView< ValuesViewType, IndexerType >; Loading Loading
src/TNL/Matrices/Multidiagonal.h +2 −2 Original line number Diff line number Diff line Loading @@ -35,8 +35,8 @@ class Multidiagonal : public Matrix< Real, Device, Index, RealAllocator > using RealAllocatorType = RealAllocator; using IndexAllocatorType = IndexAllocator; using BaseType = Matrix< Real, Device, Index, RealAllocator >; using ValuesHolderType = typename BaseType::ValuesHolderType; using ValuesViewType = typename ValuesHolderType::ViewType; using ValuesVectorType = typename BaseType::ValuesVectorType; using ValuesViewType = typename ValuesVectorType::ViewType; using IndexerType = details::MultidiagonalMatrixIndexer< IndexType, RowMajorOrder >; using DiagonalsShiftsType = Containers::Vector< IndexType, DeviceType, IndexType, IndexAllocatorType >; using DiagonalsShiftsView = typename DiagonalsShiftsType::ViewType; Loading
src/TNL/Matrices/Tridiagonal.h +2 −2 Original line number Diff line number Diff line Loading @@ -34,8 +34,8 @@ class Tridiagonal : public Matrix< Real, Device, Index, RealAllocator > using RealAllocatorType = RealAllocator; using BaseType = Matrix< Real, Device, Index, RealAllocator >; using IndexerType = details::TridiagonalMatrixIndexer< IndexType, RowMajorOrder >; using ValuesHolderType = typename BaseType::ValuesHolderType; using ValuesViewType = typename ValuesHolderType::ViewType; using ValuesVectorType = typename BaseType::ValuesVectorType; using ValuesViewType = typename ValuesVectorType::ViewType; using ViewType = TridiagonalMatrixView< Real, Device, Index, RowMajorOrder >; using ConstViewType = TridiagonalMatrixView< typename std::add_const< Real >::type, Device, Index, RowMajorOrder >; using RowView = TridiagonalMatrixRowView< ValuesViewType, IndexerType >; Loading