Lines Matching refs:RT

142          using RT = short;  in testScalarScalarMultiplication()  typedef
143 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
150 using RT = int; in testScalarScalarMultiplication() typedef
151 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
158 using RT = float; in testScalarScalarMultiplication() typedef
159 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
166 using RT = double; in testScalarScalarMultiplication() typedef
167 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
177 using RT = int; in testScalarScalarMultiplication() typedef
178 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
185 using RT = int; in testScalarScalarMultiplication() typedef
186 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
193 using RT = float; in testScalarScalarMultiplication() typedef
194 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
201 using RT = double; in testScalarScalarMultiplication() typedef
202 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
212 using RT = float; in testScalarScalarMultiplication() typedef
213 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
220 using RT = float; in testScalarScalarMultiplication() typedef
221 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
228 using RT = float; in testScalarScalarMultiplication() typedef
229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
236 using RT = double; in testScalarScalarMultiplication() typedef
237 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
244 using RT = complex<float>; in testScalarScalarMultiplication() typedef
245 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
255 using RT = double; in testScalarScalarMultiplication() typedef
256 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
263 using RT = double; in testScalarScalarMultiplication() typedef
264 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
271 using RT = double; in testScalarScalarMultiplication() typedef
272 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
279 using RT = double; in testScalarScalarMultiplication() typedef
280 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
287 using RT = complex<double>; in testScalarScalarMultiplication() typedef
288 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
298 using RT = complex<double>; in testScalarScalarMultiplication() typedef
299 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
306 using RT = complex<double>; in testScalarScalarMultiplication() typedef
307 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarScalarMultiplication()
333 using RT = StaticVector<double,3UL,columnVector>; in testVectorScalarMultiplication() typedef
334 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
337 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
338 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
343 using RT = StaticVector<double,3UL,rowVector>; in testVectorScalarMultiplication() typedef
344 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
347 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
348 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
357 using RT = HybridVector<double,5UL,columnVector>; in testVectorScalarMultiplication() typedef
358 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
361 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
362 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
367 using RT = HybridVector<double,5UL,rowVector>; in testVectorScalarMultiplication() typedef
368 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
371 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
372 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
381 using RT = DynamicVector<double,columnVector>; in testVectorScalarMultiplication() typedef
382 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
385 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
386 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
391 using RT = DynamicVector<double,rowVector>; in testVectorScalarMultiplication() typedef
392 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
395 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
396 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
405 using RT = DynamicVector<double,columnVector>; in testVectorScalarMultiplication() typedef
406 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
409 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
410 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
415 using RT = DynamicVector<double,rowVector>; in testVectorScalarMultiplication() typedef
416 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
419 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
420 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
429 using RT = UniformVector<double,columnVector>; in testVectorScalarMultiplication() typedef
430 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
433 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
434 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
439 using RT = UniformVector<double,rowVector>; in testVectorScalarMultiplication() typedef
440 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
443 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
444 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
453 using RT = DynamicVector<double,columnVector>; in testVectorScalarMultiplication() typedef
454 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
457 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
458 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
463 using RT = DynamicVector<double,rowVector>; in testVectorScalarMultiplication() typedef
464 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
467 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
468 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
477 using RT = CompressedVector<double,columnVector>; in testVectorScalarMultiplication() typedef
478 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
481 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
482 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
487 using RT = CompressedVector<double,rowVector>; in testVectorScalarMultiplication() typedef
488 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
491 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
492 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
501 using RT = ZeroVector<double,columnVector>; in testVectorScalarMultiplication() typedef
502 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
505 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
506 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
511 using RT = ZeroVector<double,rowVector>; in testVectorScalarMultiplication() typedef
512 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
515 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorScalarMultiplication()
516 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorScalarMultiplication()
542 using RT = StaticVector<double,3UL,columnVector>; in testScalarVectorMultiplication() typedef
543 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
546 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
547 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
552 using RT = StaticVector<double,3UL,rowVector>; in testScalarVectorMultiplication() typedef
553 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
556 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
557 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
566 using RT = HybridVector<double,5UL,columnVector>; in testScalarVectorMultiplication() typedef
567 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
570 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
571 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
576 using RT = HybridVector<double,5UL,rowVector>; in testScalarVectorMultiplication() typedef
577 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
580 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
581 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
590 using RT = DynamicVector<double,columnVector>; in testScalarVectorMultiplication() typedef
591 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
594 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
595 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
600 using RT = DynamicVector<double,rowVector>; in testScalarVectorMultiplication() typedef
601 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
604 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
605 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
614 using RT = DynamicVector<double,columnVector>; in testScalarVectorMultiplication() typedef
615 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
618 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
619 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
624 using RT = DynamicVector<double,rowVector>; in testScalarVectorMultiplication() typedef
625 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
628 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
629 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
638 using RT = UniformVector<double,columnVector>; in testScalarVectorMultiplication() typedef
639 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
642 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
643 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
648 using RT = UniformVector<double,rowVector>; in testScalarVectorMultiplication() typedef
649 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
652 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
653 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
662 using RT = DynamicVector<double,columnVector>; in testScalarVectorMultiplication() typedef
663 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
666 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
667 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
672 using RT = DynamicVector<double,rowVector>; in testScalarVectorMultiplication() typedef
673 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
676 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
677 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
686 using RT = CompressedVector<double,columnVector>; in testScalarVectorMultiplication() typedef
687 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
690 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
691 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
696 using RT = CompressedVector<double,rowVector>; in testScalarVectorMultiplication() typedef
697 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
700 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
701 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
710 using RT = ZeroVector<double,columnVector>; in testScalarVectorMultiplication() typedef
711 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
714 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
715 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
720 using RT = ZeroVector<double,rowVector>; in testScalarVectorMultiplication() typedef
721 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
724 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarVectorMultiplication()
725 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testScalarVectorMultiplication()
751 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixScalarMultiplication() typedef
752 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
755 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
756 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
761 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixScalarMultiplication() typedef
762 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
765 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
766 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
775 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixScalarMultiplication() typedef
776 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
779 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
780 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
785 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixScalarMultiplication() typedef
786 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
789 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
790 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
799 using RT = DynamicMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
800 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
803 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
804 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
809 using RT = DynamicMatrix<double,columnMajor>; in testMatrixScalarMultiplication() typedef
810 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
813 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
814 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
823 using RT = DynamicMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
824 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
827 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
828 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
833 using RT = DynamicMatrix<double,columnMajor>; in testMatrixScalarMultiplication() typedef
834 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
837 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
838 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
847 using RT = UniformMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
848 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
851 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
852 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
857 using RT = UniformMatrix<double,columnMajor>; in testMatrixScalarMultiplication() typedef
858 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
861 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
862 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
871 using RT = DynamicMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
872 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
875 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
876 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
885 using RT = CompressedMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
886 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
889 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
890 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
895 using RT = CompressedMatrix<double,columnMajor>; in testMatrixScalarMultiplication() typedef
896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
899 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
900 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
909 using RT = DiagonalMatrix< CompressedMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
910 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
913 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
914 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
919 using RT = DiagonalMatrix< CompressedMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
920 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
923 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
924 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
933 using RT = ZeroMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
934 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
937 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
938 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
943 using RT = ZeroMatrix<double,columnMajor>; in testMatrixScalarMultiplication() typedef
944 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
947 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
948 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
957 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
958 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
961 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
962 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
967 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
968 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
971 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
972 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
981 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixScalarMultiplication() typedef
982 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
985 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
986 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
991 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixScalarMultiplication() typedef
992 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
995 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
996 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1005 using RT = UniformMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
1006 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1009 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1010 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1015 using RT = UniformMatrix<double,columnMajor>; in testMatrixScalarMultiplication() typedef
1016 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1019 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1020 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1029 using RT = ZeroMatrix<double,rowMajor>; in testMatrixScalarMultiplication() typedef
1030 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1033 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1034 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1039 using RT = ZeroMatrix<double,columnMajor>; in testMatrixScalarMultiplication() typedef
1040 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1043 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1044 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1053 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1054 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1057 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1058 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1063 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1064 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1067 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1068 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1077 using RT = HermitianMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixScalarMultiplication() typedef
1078 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1081 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1082 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1087 using RT = HermitianMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixScalarMultiplication() typedef
1088 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1091 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1092 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1101 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1102 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1105 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1106 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1111 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1112 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1115 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1116 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1125 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1126 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1129 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1130 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1135 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1136 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1139 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1140 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1149 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1150 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1153 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1154 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1159 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1160 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1163 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1164 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1173 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1174 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1177 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1178 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1183 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1184 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1187 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1188 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1197 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1198 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1201 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1202 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1207 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1208 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1211 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1212 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1221 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1222 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1225 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1226 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1231 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1232 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1235 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1236 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1245 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixScalarMultiplication() typedef
1246 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1249 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1250 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1255 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixScalarMultiplication() typedef
1256 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1259 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixScalarMultiplication()
1260 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixScalarMultiplication()
1286 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testScalarMatrixMultiplication() typedef
1287 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1290 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1291 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1296 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testScalarMatrixMultiplication() typedef
1297 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1300 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1301 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1310 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testScalarMatrixMultiplication() typedef
1311 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1314 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1315 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1320 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testScalarMatrixMultiplication() typedef
1321 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1324 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1325 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1334 using RT = DynamicMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1335 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1338 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1339 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1344 using RT = DynamicMatrix<double,columnMajor>; in testScalarMatrixMultiplication() typedef
1345 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1348 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1349 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1358 using RT = DynamicMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1359 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1362 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1363 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1368 using RT = DynamicMatrix<double,columnMajor>; in testScalarMatrixMultiplication() typedef
1369 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1372 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1373 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1382 using RT = UniformMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1383 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1386 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1387 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1392 using RT = UniformMatrix<double,columnMajor>; in testScalarMatrixMultiplication() typedef
1393 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1396 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1397 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1406 using RT = DynamicMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1407 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1410 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1411 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1420 using RT = CompressedMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1421 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1424 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1425 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1430 using RT = CompressedMatrix<double,columnMajor>; in testScalarMatrixMultiplication() typedef
1431 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1434 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1435 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1444 using RT = DiagonalMatrix< CompressedMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1445 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1448 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1449 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1454 using RT = DiagonalMatrix< CompressedMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1455 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1458 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1459 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1468 using RT = ZeroMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1469 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1472 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1473 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1478 using RT = ZeroMatrix<double,columnMajor>; in testScalarMatrixMultiplication() typedef
1479 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1482 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1483 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1492 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1493 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1496 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1497 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1502 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1503 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1506 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1507 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1516 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testScalarMatrixMultiplication() typedef
1517 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1520 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1521 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1526 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testScalarMatrixMultiplication() typedef
1527 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1530 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1531 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1540 using RT = UniformMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1541 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1544 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1545 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1550 using RT = UniformMatrix<double,columnMajor>; in testScalarMatrixMultiplication() typedef
1551 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1554 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1555 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1564 using RT = ZeroMatrix<double,rowMajor>; in testScalarMatrixMultiplication() typedef
1565 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1568 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1569 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1574 using RT = ZeroMatrix<double,columnMajor>; in testScalarMatrixMultiplication() typedef
1575 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1578 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1579 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1588 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1589 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1592 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1593 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1598 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1599 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1602 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1603 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1612 using RT = HermitianMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testScalarMatrixMultiplication() typedef
1613 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1616 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1617 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1622 using RT = HermitianMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testScalarMatrixMultiplication() typedef
1623 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1626 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1627 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1636 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1637 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1640 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1641 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1646 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1647 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1650 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1651 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1660 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1661 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1664 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1665 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1670 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1671 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1674 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1675 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1684 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1685 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1688 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1689 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1694 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1695 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1698 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1699 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1708 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1709 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1712 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1713 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1718 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1719 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1722 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1723 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1732 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1733 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1736 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1737 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1742 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1743 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1746 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1747 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1756 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1757 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1760 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1761 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1766 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1767 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1770 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1771 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1780 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testScalarMatrixMultiplication() typedef
1781 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1784 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1785 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1790 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testScalarMatrixMultiplication() typedef
1791 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1794 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testScalarMatrixMultiplication()
1795 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testScalarMatrixMultiplication()
1823 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
1824 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1827 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1828 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1833 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
1834 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1837 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1838 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1847 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
1848 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1851 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1852 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1857 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
1858 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1861 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1862 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1871 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
1872 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1875 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1876 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1881 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
1882 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1885 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1886 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1895 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
1896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1899 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1900 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1905 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
1906 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1909 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1910 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1919 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
1920 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1923 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1924 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1929 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
1930 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1933 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1934 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1943 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
1944 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1947 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1948 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1953 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
1954 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1957 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1958 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1967 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
1968 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1971 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1972 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1977 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
1978 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1981 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1982 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
1991 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
1992 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1995 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
1996 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2001 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2002 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2005 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2006 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2018 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
2019 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2022 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2023 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2028 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
2029 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2032 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2033 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2042 using RT = HybridVector<double,5UL,columnVector>; in testVectorVectorMultiplication() typedef
2043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2047 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2052 using RT = HybridVector<double,5UL,rowVector>; in testVectorVectorMultiplication() typedef
2053 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2056 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2057 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2066 using RT = HybridVector<double,5UL,columnVector>; in testVectorVectorMultiplication() typedef
2067 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2070 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2071 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2076 using RT = HybridVector<double,5UL,rowVector>; in testVectorVectorMultiplication() typedef
2077 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2080 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2081 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2090 using RT = HybridVector<double,5UL,columnVector>; in testVectorVectorMultiplication() typedef
2091 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2094 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2095 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2100 using RT = HybridVector<double,5UL,rowVector>; in testVectorVectorMultiplication() typedef
2101 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2104 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2105 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2114 using RT = HybridVector<double,5UL,columnVector>; in testVectorVectorMultiplication() typedef
2115 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2118 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2119 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2124 using RT = HybridVector<double,5UL,rowVector>; in testVectorVectorMultiplication() typedef
2125 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2128 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2129 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2138 using RT = HybridVector<double,5UL,columnVector>; in testVectorVectorMultiplication() typedef
2139 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2142 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2143 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2148 using RT = HybridVector<double,5UL,rowVector>; in testVectorVectorMultiplication() typedef
2149 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2152 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2153 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2162 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2163 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2166 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2167 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2172 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2173 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2176 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2177 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2186 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2187 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2190 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2191 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2196 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2197 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2200 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2201 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2213 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
2214 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2217 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2218 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2223 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
2224 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2227 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2228 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2237 using RT = HybridVector<double,7UL,columnVector>; in testVectorVectorMultiplication() typedef
2238 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2241 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2242 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2247 using RT = HybridVector<double,7UL,rowVector>; in testVectorVectorMultiplication() typedef
2248 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2251 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2252 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2261 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2262 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2265 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2266 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2271 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2272 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2275 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2276 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2285 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2286 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2289 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2290 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2295 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2296 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2299 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2300 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2309 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2310 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2313 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2314 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2319 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2320 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2323 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2324 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2333 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2334 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2337 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2338 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2343 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2344 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2347 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2348 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2357 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2358 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2361 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2362 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2367 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2368 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2371 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2372 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2381 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2382 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2385 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2386 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2391 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2392 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2395 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2396 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2408 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
2409 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2412 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2413 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2418 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
2419 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2422 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2423 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2432 using RT = HybridVector<double,7UL,columnVector>; in testVectorVectorMultiplication() typedef
2433 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2436 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2437 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2442 using RT = HybridVector<double,7UL,rowVector>; in testVectorVectorMultiplication() typedef
2443 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2446 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2447 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2456 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2457 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2460 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2461 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2466 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2467 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2470 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2471 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2480 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2481 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2484 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2485 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2490 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2491 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2494 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2495 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2504 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2505 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2508 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2509 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2514 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2515 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2518 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2519 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2528 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2529 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2532 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2533 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2538 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2539 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2542 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2543 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2552 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2553 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2556 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2557 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2562 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2563 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2566 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2567 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2576 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2577 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2580 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2581 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2586 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2587 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2590 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2591 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2603 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
2604 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2607 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2608 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2613 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
2614 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2617 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2618 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2627 using RT = HybridVector<double,7UL,columnVector>; in testVectorVectorMultiplication() typedef
2628 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2631 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2632 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2637 using RT = HybridVector<double,7UL,rowVector>; in testVectorVectorMultiplication() typedef
2638 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2641 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2642 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2651 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2652 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2655 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2656 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2661 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2662 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2665 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2666 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2675 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2676 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2679 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2680 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2685 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2686 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2689 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2690 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2699 using RT = UniformVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2700 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2703 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2704 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2709 using RT = UniformVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2710 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2713 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2714 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2723 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2724 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2727 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2728 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2733 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2734 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2737 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2738 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2747 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2748 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2751 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2752 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2757 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2758 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2761 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2762 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2771 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2772 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2775 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2776 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2781 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2782 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2785 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2786 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2798 using RT = StaticVector<double,3UL,columnVector>; in testVectorVectorMultiplication() typedef
2799 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2802 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2803 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2808 using RT = StaticVector<double,3UL,rowVector>; in testVectorVectorMultiplication() typedef
2809 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2812 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2813 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2822 using RT = HybridVector<double,7UL,columnVector>; in testVectorVectorMultiplication() typedef
2823 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2826 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2827 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2832 using RT = HybridVector<double,7UL,rowVector>; in testVectorVectorMultiplication() typedef
2833 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2836 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2837 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2846 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2847 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2850 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2851 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2856 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2857 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2860 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2861 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2870 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2871 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2874 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2875 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2880 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2881 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2884 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2885 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2894 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2895 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2898 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2899 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2904 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2905 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2908 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2909 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2918 using RT = DynamicVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2919 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2922 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2923 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2928 using RT = DynamicVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2929 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2932 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2933 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2942 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2943 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2946 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2947 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2952 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2953 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2956 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2957 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2966 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2967 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2970 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2971 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2976 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
2977 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2980 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2981 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
2993 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
2994 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2997 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
2998 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3003 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3004 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3007 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3008 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3017 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3018 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3021 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3022 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3027 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3028 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3031 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3032 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3041 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3042 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3045 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3046 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3051 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3052 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3055 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3056 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3065 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3066 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3069 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3070 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3075 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3076 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3079 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3080 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3089 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3090 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3093 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3094 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3099 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3100 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3103 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3104 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3113 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3114 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3117 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3118 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3123 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3124 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3127 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3128 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3137 using RT = CompressedVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3138 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3141 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3142 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3147 using RT = CompressedVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3148 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3151 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3152 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3161 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3162 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3165 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3166 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3171 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3172 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3175 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3176 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3188 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3189 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3192 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3193 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3198 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3199 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3202 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3203 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3212 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3213 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3216 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3217 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3222 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3223 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3226 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3227 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3236 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3237 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3240 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3241 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3246 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3247 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3250 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3251 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3260 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3261 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3264 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3265 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3270 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3271 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3274 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3275 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3284 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3285 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3288 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3289 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3294 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3295 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3298 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3299 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3308 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3309 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3312 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3313 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3318 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3319 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3322 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3323 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3332 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3333 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3336 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3337 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3342 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3343 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3346 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3347 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3356 using RT = ZeroVector<double,columnVector>; in testVectorVectorMultiplication() typedef
3357 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3360 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3361 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3366 using RT = ZeroVector<double,rowVector>; in testVectorVectorMultiplication() typedef
3367 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3370 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorVectorMultiplication()
3371 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorVectorMultiplication()
3400 using RT = double; in testInnerProduct() typedef
3401 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3406 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3407 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3416 using RT = double; in testInnerProduct() typedef
3417 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3422 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3423 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3432 using RT = double; in testInnerProduct() typedef
3433 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3438 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3439 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3448 using RT = double; in testInnerProduct() typedef
3449 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3454 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3455 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3464 using RT = double; in testInnerProduct() typedef
3465 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3470 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3471 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3480 using RT = double; in testInnerProduct() typedef
3481 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3486 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3487 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3496 using RT = double; in testInnerProduct() typedef
3497 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3502 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3503 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3512 using RT = double; in testInnerProduct() typedef
3513 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3518 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3519 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3531 using RT = double; in testInnerProduct() typedef
3532 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3537 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3538 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3547 using RT = double; in testInnerProduct() typedef
3548 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3553 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3554 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3563 using RT = double; in testInnerProduct() typedef
3564 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3569 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3570 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3579 using RT = double; in testInnerProduct() typedef
3580 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3585 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3586 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3595 using RT = double; in testInnerProduct() typedef
3596 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3601 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3602 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3611 using RT = double; in testInnerProduct() typedef
3612 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3617 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3618 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3627 using RT = double; in testInnerProduct() typedef
3628 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3633 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3634 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3643 using RT = double; in testInnerProduct() typedef
3644 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3649 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3650 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3662 using RT = double; in testInnerProduct() typedef
3663 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3668 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3669 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3678 using RT = double; in testInnerProduct() typedef
3679 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3684 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3685 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3694 using RT = double; in testInnerProduct() typedef
3695 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3700 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3701 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3710 using RT = double; in testInnerProduct() typedef
3711 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3716 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3717 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3726 using RT = double; in testInnerProduct() typedef
3727 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3732 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3733 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3742 using RT = double; in testInnerProduct() typedef
3743 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3748 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3749 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3758 using RT = double; in testInnerProduct() typedef
3759 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3764 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3765 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3774 using RT = double; in testInnerProduct() typedef
3775 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3780 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3781 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3793 using RT = double; in testInnerProduct() typedef
3794 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3799 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3800 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3809 using RT = double; in testInnerProduct() typedef
3810 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3815 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3816 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3825 using RT = double; in testInnerProduct() typedef
3826 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3831 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3832 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3841 using RT = double; in testInnerProduct() typedef
3842 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3847 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3848 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3857 using RT = double; in testInnerProduct() typedef
3858 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3863 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3864 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3873 using RT = double; in testInnerProduct() typedef
3874 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3879 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3880 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3889 using RT = double; in testInnerProduct() typedef
3890 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3895 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3905 using RT = double; in testInnerProduct() typedef
3906 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3911 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3912 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3924 using RT = double; in testInnerProduct() typedef
3925 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3930 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3931 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3940 using RT = double; in testInnerProduct() typedef
3941 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3946 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3947 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3956 using RT = double; in testInnerProduct() typedef
3957 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3962 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3963 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3972 using RT = double; in testInnerProduct() typedef
3973 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3978 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3979 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3988 using RT = double; in testInnerProduct() typedef
3989 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
3994 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
3995 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4004 using RT = double; in testInnerProduct() typedef
4005 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4010 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4011 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4020 using RT = double; in testInnerProduct() typedef
4021 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4026 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4027 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4036 using RT = double; in testInnerProduct() typedef
4037 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4042 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4055 using RT = double; in testInnerProduct() typedef
4056 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4061 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4062 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4071 using RT = double; in testInnerProduct() typedef
4072 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4077 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4078 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4087 using RT = double; in testInnerProduct() typedef
4088 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4093 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4094 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4103 using RT = double; in testInnerProduct() typedef
4104 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4109 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4110 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4119 using RT = double; in testInnerProduct() typedef
4120 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4125 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4126 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4135 using RT = double; in testInnerProduct() typedef
4136 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4141 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4142 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4151 using RT = double; in testInnerProduct() typedef
4152 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4157 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4158 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4167 using RT = double; in testInnerProduct() typedef
4168 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4173 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4174 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4186 using RT = double; in testInnerProduct() typedef
4187 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4192 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4193 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4202 using RT = double; in testInnerProduct() typedef
4203 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4208 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4209 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4218 using RT = double; in testInnerProduct() typedef
4219 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4224 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4225 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4234 using RT = double; in testInnerProduct() typedef
4235 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4240 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4241 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4250 using RT = double; in testInnerProduct() typedef
4251 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4256 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4257 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4266 using RT = double; in testInnerProduct() typedef
4267 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4272 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4273 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4282 using RT = double; in testInnerProduct() typedef
4283 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4288 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4289 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4298 using RT = double; in testInnerProduct() typedef
4299 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4304 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4305 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4317 using RT = double; in testInnerProduct() typedef
4318 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4323 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4324 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4333 using RT = double; in testInnerProduct() typedef
4334 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4339 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4340 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4349 using RT = double; in testInnerProduct() typedef
4350 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4355 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4356 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4365 using RT = double; in testInnerProduct() typedef
4366 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4371 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4372 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4381 using RT = double; in testInnerProduct() typedef
4382 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4387 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4388 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4397 using RT = double; in testInnerProduct() typedef
4398 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4403 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4404 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4413 using RT = double; in testInnerProduct() typedef
4414 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4419 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4420 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4429 using RT = double; in testInnerProduct() typedef
4430 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4435 using RT = StaticVector<double,2UL>; in testInnerProduct() typedef
4436 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testInnerProduct()
4465 using RT = StaticMatrix<double,3UL,4UL,rowMajor>; in testOuterProduct() typedef
4466 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4469 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4470 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4475 using RT = StaticMatrix<StaticVector<double,2UL>,3UL,4UL,rowMajor>; in testOuterProduct() typedef
4476 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4479 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4480 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4489 using RT = HybridMatrix<double,3UL,6UL,rowMajor>; in testOuterProduct() typedef
4490 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4493 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4494 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4499 using RT = HybridMatrix<StaticVector<double,2UL>,3UL,6UL,rowMajor>; in testOuterProduct() typedef
4500 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4503 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4504 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4513 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4514 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4517 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4518 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4523 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4524 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4527 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4528 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4537 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4538 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4541 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4542 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4547 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4548 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4551 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4552 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4561 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4562 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4565 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4566 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4571 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4572 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4575 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4576 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4585 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4586 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4589 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4590 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4595 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4596 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4599 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4600 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4609 using RT = CompressedMatrix<double,rowMajor>; in testOuterProduct() typedef
4610 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4613 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4614 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4619 using RT = CompressedMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4620 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4623 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4624 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4633 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
4634 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4637 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4638 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4643 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4644 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4647 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4648 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4660 using RT = HybridMatrix<double,5UL,4UL,rowMajor>; in testOuterProduct() typedef
4661 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4664 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4665 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4670 using RT = HybridMatrix<StaticVector<double,2UL>,5UL,4UL,rowMajor>; in testOuterProduct() typedef
4671 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4674 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4675 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4684 using RT = HybridMatrix<double,5UL,6UL,rowMajor>; in testOuterProduct() typedef
4685 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4688 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4689 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4694 using RT = HybridMatrix<StaticVector<double,2UL>,5UL,6UL,rowMajor>; in testOuterProduct() typedef
4695 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4698 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4699 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4708 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4709 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4712 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4713 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4718 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4719 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4722 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4723 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4732 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4733 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4736 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4737 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4742 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4743 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4746 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4747 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4756 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4757 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4760 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4761 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4766 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4767 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4770 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4771 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4780 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4781 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4784 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4785 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4790 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4791 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4794 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4795 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4804 using RT = CompressedMatrix<double,rowMajor>; in testOuterProduct() typedef
4805 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4808 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4809 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4814 using RT = CompressedMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4815 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4818 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4819 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4828 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
4829 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4832 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4833 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4838 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4839 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4842 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4843 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4855 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4856 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4859 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4860 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4865 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4866 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4869 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4870 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4879 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4880 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4883 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4884 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4889 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4890 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4893 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4894 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4903 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4904 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4907 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4908 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4913 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4914 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4917 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4918 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4927 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4928 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4931 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4932 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4937 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4938 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4941 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4942 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4951 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4952 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4955 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4956 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4961 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4962 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4965 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4966 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4975 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
4976 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4979 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4980 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4985 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
4986 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
4989 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
4990 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
4999 using RT = CompressedMatrix<double,rowMajor>; in testOuterProduct() typedef
5000 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5003 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5004 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5009 using RT = CompressedMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5010 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5013 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5014 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5023 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
5024 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5027 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5028 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5033 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5034 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5037 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5038 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5050 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5051 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5054 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5055 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5060 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5061 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5064 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5065 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5074 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5075 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5078 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5079 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5084 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5085 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5088 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5089 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5098 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5099 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5102 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5103 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5108 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5109 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5112 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5113 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5122 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5123 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5126 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5127 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5132 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5133 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5136 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5137 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5146 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5147 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5150 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5151 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5156 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5157 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5160 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5161 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5170 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5171 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5174 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5175 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5180 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5181 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5184 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5185 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5194 using RT = CompressedMatrix<double,rowMajor>; in testOuterProduct() typedef
5195 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5198 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5199 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5204 using RT = CompressedMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5205 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5208 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5209 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5218 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
5219 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5222 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5223 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5228 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5232 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5233 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5245 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5246 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5249 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5250 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5255 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5256 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5259 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5260 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5269 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5270 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5273 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5274 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5279 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5280 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5283 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5284 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5293 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5294 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5297 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5298 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5303 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5304 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5307 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5308 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5317 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5318 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5321 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5322 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5327 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5328 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5331 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5332 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5341 using RT = UniformMatrix<double,rowMajor>; in testOuterProduct() typedef
5342 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5345 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5346 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5351 using RT = UniformMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5352 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5355 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5356 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5365 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5366 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5369 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5370 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5375 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5376 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5379 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5380 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5389 using RT = CompressedMatrix<double,rowMajor>; in testOuterProduct() typedef
5390 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5393 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5394 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5399 using RT = CompressedMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5400 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5403 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5404 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5413 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
5414 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5417 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5418 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5423 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5424 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5427 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5428 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5440 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5441 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5444 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5445 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5450 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5451 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5454 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5455 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5464 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5465 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5468 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5469 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5474 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5475 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5478 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5479 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5488 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5489 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5492 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5493 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5498 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5499 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5502 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5503 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5512 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5513 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5516 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5517 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5522 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5523 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5526 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5527 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5536 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5537 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5540 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5541 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5546 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5547 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5550 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5551 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5560 using RT = DynamicMatrix<double,rowMajor>; in testOuterProduct() typedef
5561 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5564 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5565 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5570 using RT = DynamicMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5571 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5574 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5575 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5584 using RT = CompressedMatrix<double,rowMajor>; in testOuterProduct() typedef
5585 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5588 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5589 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5594 using RT = CompressedMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5595 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5598 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5599 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5608 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
5609 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5612 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5613 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5618 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5619 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5622 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5623 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5635 using RT = CompressedMatrix<double,columnMajor>; in testOuterProduct() typedef
5636 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5639 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5640 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5645 using RT = CompressedMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5646 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5649 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5650 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5659 using RT = CompressedMatrix<double,columnMajor>; in testOuterProduct() typedef
5660 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5663 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5664 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5669 using RT = CompressedMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5670 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5673 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5674 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5683 using RT = CompressedMatrix<double,columnMajor>; in testOuterProduct() typedef
5684 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5687 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5688 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5693 using RT = CompressedMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5694 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5697 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5698 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5707 using RT = CompressedMatrix<double,columnMajor>; in testOuterProduct() typedef
5708 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5711 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5712 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5717 using RT = CompressedMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5718 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5721 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5722 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5731 using RT = CompressedMatrix<double,columnMajor>; in testOuterProduct() typedef
5732 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5735 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5736 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5741 using RT = CompressedMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5742 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5745 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5746 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5755 using RT = CompressedMatrix<double,columnMajor>; in testOuterProduct() typedef
5756 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5759 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5760 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5765 using RT = CompressedMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5766 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5769 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5770 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5779 using RT = CompressedMatrix<double,rowMajor>; in testOuterProduct() typedef
5780 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5783 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5784 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5789 using RT = CompressedMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5790 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5793 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5794 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5803 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
5804 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5807 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5808 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5813 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5814 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5817 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5818 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5830 using RT = ZeroMatrix<double,columnMajor>; in testOuterProduct() typedef
5831 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5834 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5835 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5840 using RT = ZeroMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5841 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5844 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5845 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5854 using RT = ZeroMatrix<double,columnMajor>; in testOuterProduct() typedef
5855 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5858 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5859 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5864 using RT = ZeroMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5865 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5868 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5869 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5878 using RT = ZeroMatrix<double,columnMajor>; in testOuterProduct() typedef
5879 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5882 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5883 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5888 using RT = ZeroMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5889 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5892 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5893 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5902 using RT = ZeroMatrix<double,columnMajor>; in testOuterProduct() typedef
5903 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5906 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5907 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5912 using RT = ZeroMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5913 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5916 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5917 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5926 using RT = ZeroMatrix<double,columnMajor>; in testOuterProduct() typedef
5927 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5930 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5931 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5936 using RT = ZeroMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5937 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5940 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5941 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5950 using RT = ZeroMatrix<double,columnMajor>; in testOuterProduct() typedef
5951 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5954 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5955 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5960 using RT = ZeroMatrix<StaticVector<double,2UL>,columnMajor>; in testOuterProduct() typedef
5961 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5964 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5965 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5974 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
5975 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5978 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5979 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5984 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
5985 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
5988 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
5989 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
5998 using RT = ZeroMatrix<double,rowMajor>; in testOuterProduct() typedef
5999 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
6002 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
6003 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
6008 using RT = ZeroMatrix<StaticVector<double,2UL>,rowMajor>; in testOuterProduct() typedef
6009 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testOuterProduct()
6012 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testOuterProduct()
6013 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testOuterProduct()
6042 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6047 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6052 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6053 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6056 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6057 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6066 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6067 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6070 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6071 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6076 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6077 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6080 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6081 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6090 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6091 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6094 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6095 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6100 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6101 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6104 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6105 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6114 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6115 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6118 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6119 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6124 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6125 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6128 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6129 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6138 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6139 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6142 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6143 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6148 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6149 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6152 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6153 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6162 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6163 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6166 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6167 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6172 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6173 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6176 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6177 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6186 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6187 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6190 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6191 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6196 using RT = StaticVector<double,3UL,columnVector>; in testMatrixVectorMultiplication() typedef
6197 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6200 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6201 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6210 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6211 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6214 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6215 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6220 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6221 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6224 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6225 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6237 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6238 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6241 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6242 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6247 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6248 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6251 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6252 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6261 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6262 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6265 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6266 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6271 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6272 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6275 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6276 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6285 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6286 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6289 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6290 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6295 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6296 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6299 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6300 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6309 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6310 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6313 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6314 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6319 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6320 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6323 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6324 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6333 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6334 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6337 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6338 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6343 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6344 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6347 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6348 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6357 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6358 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6361 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6362 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6367 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6368 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6371 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6372 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6381 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6382 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6385 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6386 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6391 using RT = HybridVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
6392 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6395 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6396 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6405 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6406 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6409 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6410 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6415 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6416 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6419 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6420 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6432 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6433 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6436 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6437 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6442 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6443 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6446 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6447 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6456 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6457 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6460 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6461 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6466 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6467 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6470 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6471 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6480 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6481 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6484 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6485 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6490 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6491 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6494 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6495 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6504 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6505 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6508 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6509 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6514 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6515 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6518 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6519 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6528 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6529 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6532 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6533 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6538 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6539 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6542 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6543 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6552 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6553 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6556 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6557 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6562 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6563 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6566 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6567 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6576 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6577 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6580 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6581 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6586 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6587 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6590 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6591 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6600 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6601 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6604 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6605 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6610 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6611 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6614 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6615 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6627 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6628 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6631 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6632 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6637 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6638 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6641 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6642 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6651 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6652 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6655 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6656 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6661 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6662 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6665 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6666 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6675 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6676 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6679 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6680 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6685 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6686 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6689 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6690 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6699 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6700 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6703 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6704 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6709 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6710 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6713 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6714 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6723 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6724 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6727 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6728 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6733 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6734 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6737 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6738 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6747 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6748 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6751 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6752 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6757 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6758 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6761 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6762 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6771 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6772 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6775 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6776 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6781 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6782 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6785 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6786 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6795 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6796 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6799 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6800 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6805 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6806 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6809 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6810 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6822 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6823 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6826 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6827 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6832 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6833 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6836 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6837 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6846 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6847 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6850 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6851 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6856 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6857 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6860 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6861 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6870 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6871 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6874 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6875 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6880 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6881 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6884 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6885 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6894 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6895 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6898 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6899 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6904 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6905 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6908 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6909 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6918 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6919 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6922 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6923 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6928 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6929 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6932 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6933 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6942 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6943 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6946 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6947 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6952 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6953 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6956 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6957 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6966 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6967 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6970 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6971 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6976 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6977 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6980 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6981 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
6990 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
6991 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6994 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
6995 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7000 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7001 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7004 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7005 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7017 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7018 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7021 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7022 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7031 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7032 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7035 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7036 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7045 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7046 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7049 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7050 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7059 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7060 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7063 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7064 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7073 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7074 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7077 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7078 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7087 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7088 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7091 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7092 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7101 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7102 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7105 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7106 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7115 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7116 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7119 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7120 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7132 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7133 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7136 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7137 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7142 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7143 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7146 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7147 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7156 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7157 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7160 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7161 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7166 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7167 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7170 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7171 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7180 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7181 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7184 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7185 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7190 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7191 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7194 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7195 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7204 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7205 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7208 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7209 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7214 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7215 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7218 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7219 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7228 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7232 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7233 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7238 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7239 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7242 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7243 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7252 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7253 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7256 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7257 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7262 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7263 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7266 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7267 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7276 using RT = CompressedVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7277 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7280 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7281 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7286 using RT = CompressedVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7287 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7290 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7291 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7300 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7301 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7304 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7305 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7310 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7311 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7314 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7315 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7327 using RT = StaticVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
7328 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7331 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7332 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7337 using RT = StaticVector<double,5UL,columnVector>; in testMatrixVectorMultiplication() typedef
7338 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7341 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7342 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7351 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
7352 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7355 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7356 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7361 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
7362 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7365 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7366 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7375 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7376 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7379 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7380 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7385 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7386 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7389 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7390 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7399 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7400 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7403 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7404 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7409 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7410 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7413 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7414 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7423 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7424 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7427 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7428 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7433 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7434 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7437 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7438 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7447 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7448 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7451 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7452 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7457 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7458 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7461 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7462 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7471 using RT = CompressedVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7472 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7475 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7476 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7481 using RT = CompressedVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7482 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7485 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7486 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7495 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7496 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7499 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7500 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7505 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7506 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7509 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7510 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7522 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7523 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7526 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7527 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7532 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7533 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7536 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7537 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7546 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7547 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7550 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7551 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7556 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7557 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7560 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7561 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7570 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7571 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7574 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7575 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7580 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7581 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7584 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7585 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7594 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7595 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7598 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7599 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7604 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7605 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7608 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7609 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7618 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7619 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7622 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7623 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7628 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7629 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7632 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7633 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7642 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7643 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7646 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7647 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7652 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7653 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7656 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7657 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7666 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7667 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7670 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7671 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7676 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7677 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7680 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7681 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7690 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7691 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7694 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7695 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7700 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7701 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7704 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7705 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7717 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
7718 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7721 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7722 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7727 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
7728 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7731 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7732 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7741 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
7742 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7745 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7746 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7751 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
7752 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7755 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7756 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7765 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7766 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7769 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7770 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7775 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7776 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7779 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7780 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7789 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7790 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7793 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7794 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7799 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7800 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7803 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7804 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7813 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7814 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7817 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7818 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7823 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7824 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7827 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7828 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7837 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7838 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7841 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7842 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7847 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7848 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7851 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7852 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7861 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7862 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7865 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7866 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7871 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7872 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7875 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7876 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7885 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7886 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7889 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7890 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7895 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
7896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7899 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7900 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7912 using RT = StaticVector<complex<int>,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
7913 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7916 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7917 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7922 using RT = StaticVector<complex<int>,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
7923 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7926 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7927 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7936 using RT = HybridVector<complex<int>,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
7937 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7940 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7941 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7946 using RT = HybridVector<complex<int>,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
7947 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7950 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7951 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7960 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
7961 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7964 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7965 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7970 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
7971 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7974 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7975 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7984 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
7985 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7988 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7989 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
7994 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
7995 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7998 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
7999 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8008 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8009 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8012 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8013 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8018 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8019 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8022 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8023 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8032 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8033 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8036 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8037 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8042 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8047 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8056 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8057 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8060 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8061 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8066 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8067 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8070 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8071 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8080 using RT = ZeroVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8081 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8084 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8085 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8090 using RT = ZeroVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8091 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8094 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8095 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8107 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8108 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8111 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8112 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8117 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8118 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8121 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8122 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8131 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8132 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8135 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8136 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8141 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8142 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8145 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8146 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8155 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8156 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8159 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8160 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8165 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8166 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8169 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8170 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8179 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8180 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8183 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8184 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8189 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8190 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8193 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8194 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8203 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8204 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8207 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8208 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8213 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8214 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8217 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8218 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8227 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8228 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8231 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8232 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8237 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8238 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8241 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8242 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8251 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8252 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8255 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8256 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8261 using RT = UniformVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8262 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8265 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8266 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8275 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8276 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8279 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8280 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8285 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8286 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8289 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8290 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8302 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8303 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8306 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8307 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8312 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8313 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8316 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8317 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8326 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8327 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8330 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8331 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8336 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8337 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8340 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8341 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8350 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8351 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8354 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8355 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8360 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8361 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8364 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8365 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8374 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8375 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8378 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8379 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8384 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8385 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8388 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8389 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8398 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8399 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8402 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8403 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8408 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8409 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8412 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8413 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8422 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8423 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8426 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8427 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8432 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8433 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8436 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8437 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8446 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8447 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8450 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8451 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8456 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8457 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8460 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8461 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8470 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8471 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8474 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8475 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8480 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8481 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8484 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8485 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8497 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
8498 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8501 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8502 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8507 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
8508 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8511 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8512 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8521 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
8522 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8525 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8526 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8531 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
8532 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8535 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8536 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8545 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8546 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8549 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8550 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8555 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8556 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8559 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8560 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8569 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8570 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8573 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8574 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8579 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8580 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8583 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8584 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8593 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8594 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8597 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8598 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8603 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8604 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8607 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8608 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8617 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8618 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8621 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8622 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8627 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8628 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8631 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8632 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8641 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8642 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8645 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8646 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8651 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8652 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8655 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8656 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8665 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8666 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8669 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8670 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8675 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8676 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8679 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8680 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8692 using RT = StaticVector<complex<int>,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
8693 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8696 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8697 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8702 using RT = StaticVector<complex<int>,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
8703 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8706 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8707 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8716 using RT = HybridVector<complex<int>,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
8717 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8720 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8721 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8726 using RT = HybridVector<complex<int>,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
8727 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8730 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8731 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8740 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8741 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8744 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8745 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8750 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8751 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8754 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8755 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8764 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8765 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8768 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8769 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8774 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8775 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8778 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8779 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8788 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8789 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8792 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8793 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8798 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8799 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8802 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8803 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8812 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8813 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8816 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8817 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8822 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8823 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8826 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8827 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8836 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8837 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8840 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8841 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8846 using RT = DynamicVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8847 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8850 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8851 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8860 using RT = ZeroVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8861 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8864 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8865 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8870 using RT = ZeroVector<complex<int>,columnVector>; in testMatrixVectorMultiplication() typedef
8871 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8874 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8875 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8887 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
8888 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8891 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8892 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8897 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
8898 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8901 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8902 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8911 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
8912 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8915 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8916 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8921 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
8922 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8925 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8926 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8935 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8936 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8939 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8940 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8945 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8946 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8949 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8950 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8959 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8960 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8963 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8964 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8969 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8970 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8973 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8974 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8983 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8984 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8987 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8988 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
8993 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
8994 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8997 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
8998 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9007 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9008 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9011 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9012 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9017 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9018 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9021 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9022 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9031 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9032 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9035 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9036 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9041 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9042 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9045 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9046 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9055 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9056 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9059 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9060 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9065 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9066 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9069 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9070 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9082 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9083 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9086 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9087 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9092 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9093 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9096 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9097 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9106 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9107 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9110 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9111 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9116 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9117 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9120 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9121 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9130 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9131 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9134 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9135 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9140 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9141 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9144 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9145 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9154 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9155 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9158 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9159 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9164 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9165 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9168 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9169 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9178 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9179 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9182 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9183 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9188 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9189 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9192 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9193 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9202 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9203 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9206 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9207 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9212 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9213 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9216 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9217 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9226 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9227 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9230 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9231 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9236 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9237 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9240 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9241 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9250 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9251 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9254 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9255 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9260 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9261 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9264 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9265 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9277 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9278 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9281 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9282 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9287 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9288 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9291 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9292 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9301 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9302 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9305 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9306 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9311 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9312 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9315 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9316 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9325 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9326 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9329 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9330 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9335 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9336 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9339 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9340 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9349 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9350 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9353 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9354 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9359 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9360 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9363 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9364 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9373 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9374 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9377 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9378 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9383 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9384 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9387 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9388 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9397 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9398 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9401 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9402 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9407 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9408 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9411 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9412 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9421 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9422 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9425 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9426 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9431 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9432 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9435 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9436 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9445 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9446 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9449 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9450 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9455 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9456 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9459 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9460 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9472 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9473 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9476 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9477 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9482 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9483 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9486 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9487 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9496 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9497 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9500 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9501 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9506 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9507 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9510 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9511 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9520 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9521 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9524 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9525 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9530 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9531 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9534 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9535 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9544 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9545 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9548 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9549 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9554 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9555 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9558 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9559 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9568 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9569 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9572 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9573 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9578 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9579 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9582 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9583 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9592 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9593 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9596 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9597 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9602 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9603 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9606 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9607 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9616 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9617 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9620 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9621 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9626 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9627 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9630 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9631 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9640 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9641 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9644 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9645 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9650 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9651 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9654 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9655 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9667 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9668 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9671 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9672 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9677 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9678 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9681 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9682 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9691 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9692 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9695 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9696 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9701 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9702 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9705 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9706 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9715 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9716 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9719 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9720 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9725 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9726 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9729 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9730 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9739 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9740 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9743 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9744 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9749 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9750 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9753 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9754 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9763 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9764 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9767 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9768 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9773 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9774 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9777 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9778 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9787 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9788 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9791 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9792 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9797 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9798 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9801 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9802 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9811 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9812 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9815 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9816 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9821 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9822 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9825 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9826 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9835 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9836 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9839 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9840 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9845 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9846 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9849 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9850 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9862 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9863 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9866 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9867 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9872 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
9873 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9876 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9877 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9886 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9887 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9890 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9891 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9896 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
9897 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9900 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9901 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9910 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9911 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9914 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9915 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9920 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9921 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9924 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9925 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9934 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9935 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9938 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9939 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9944 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9945 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9948 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9949 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9958 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9959 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9962 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9963 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9968 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9969 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9972 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9973 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9982 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9983 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9986 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9987 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
9992 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
9993 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9996 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
9997 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10006 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10007 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10010 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10011 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10016 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10017 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10020 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10021 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10030 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10031 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10034 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10035 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10040 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10041 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10044 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10045 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10057 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
10058 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10061 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10062 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10067 using RT = StaticVector<double,4UL,columnVector>; in testMatrixVectorMultiplication() typedef
10068 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10071 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10072 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10081 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
10082 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10085 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10086 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10091 using RT = HybridVector<double,6UL,columnVector>; in testMatrixVectorMultiplication() typedef
10092 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10095 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10096 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10105 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10106 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10109 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10110 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10115 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10116 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10119 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10120 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10129 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10130 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10133 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10134 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10139 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10140 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10143 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10144 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10153 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10154 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10157 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10158 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10163 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10164 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10167 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10168 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10177 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10178 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10181 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10182 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10187 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10188 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10191 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10192 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10201 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10202 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10205 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10206 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10211 using RT = DynamicVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10212 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10215 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10216 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10225 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10226 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10229 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10230 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10235 using RT = ZeroVector<double,columnVector>; in testMatrixVectorMultiplication() typedef
10236 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10239 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixVectorMultiplication()
10240 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testMatrixVectorMultiplication()
10269 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
10270 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10273 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10274 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10279 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
10280 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10283 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10284 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10293 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
10294 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10297 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10298 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10303 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
10304 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10307 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10308 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10317 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10318 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10321 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10322 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10327 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10328 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10331 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10332 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10341 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10342 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10345 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10346 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10351 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10352 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10355 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10356 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10365 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10366 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10369 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10370 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10375 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10376 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10379 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10380 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10389 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10390 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10393 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10394 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10403 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10404 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10407 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10408 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10413 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10414 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10417 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10418 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10427 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10428 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10431 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10432 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10437 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10438 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10441 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10442 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10451 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10452 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10455 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10456 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10461 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10462 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10465 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10466 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10475 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10476 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10479 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10480 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10485 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10486 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10489 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10490 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10499 using RT = StaticVector<complex<int>,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10500 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10503 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10504 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10509 using RT = StaticVector<complex<int>,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10510 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10513 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10514 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10523 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10524 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10527 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10528 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10533 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10534 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10537 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10538 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10547 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10548 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10551 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10552 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10557 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10558 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10561 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10562 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10571 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10572 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10575 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10576 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10581 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10582 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10585 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10586 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10595 using RT = StaticVector<complex<int>,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10596 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10599 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10600 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10605 using RT = StaticVector<complex<int>,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10606 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10609 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10610 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10619 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10620 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10623 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10624 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10629 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10630 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10633 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10634 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10643 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10644 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10647 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10648 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10653 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10654 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10657 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10658 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10667 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10668 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10671 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10672 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10677 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10678 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10681 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10682 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10691 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10692 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10695 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10696 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10701 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10702 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10705 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10706 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10715 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10716 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10719 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10720 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10725 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10726 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10729 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10730 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10739 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10740 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10743 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10744 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10749 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10750 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10753 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10754 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10763 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10764 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10767 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10768 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10773 using RT = StaticVector<double,5UL,rowVector>; in testVectorMatrixMultiplication() typedef
10774 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10777 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10778 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10790 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
10791 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10794 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10795 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10800 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
10801 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10804 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10805 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10814 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
10815 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10818 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10819 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10824 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
10825 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10828 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10829 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10838 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10839 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10842 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10843 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10848 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10849 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10852 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10853 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10862 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10863 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10866 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10867 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10872 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10873 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10876 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10877 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10886 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10887 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10890 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10891 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10896 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10897 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10900 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10901 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10910 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10911 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10914 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10915 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10924 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10925 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10928 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10929 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10934 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10935 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10938 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10939 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10948 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
10949 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10952 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10953 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10958 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
10959 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10962 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10963 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10972 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10973 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10976 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10977 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10982 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
10983 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10986 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
10987 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
10996 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
10997 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11000 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11001 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11006 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11007 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11010 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11011 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11020 using RT = HybridVector<complex<int>,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11021 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11024 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11025 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11030 using RT = HybridVector<complex<int>,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11031 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11034 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11035 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11044 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11045 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11048 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11049 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11054 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11055 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11058 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11059 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11068 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11069 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11072 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11073 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11078 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11079 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11082 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11083 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11092 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11093 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11096 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11097 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11102 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11103 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11106 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11107 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11116 using RT = HybridVector<complex<int>,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11117 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11120 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11121 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11126 using RT = HybridVector<complex<int>,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11127 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11130 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11131 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11140 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11141 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11144 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11145 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11150 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11151 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11154 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11155 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11164 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11165 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11168 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11169 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11174 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11175 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11178 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11179 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11188 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11189 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11192 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11193 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11198 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11199 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11202 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11203 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11212 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11213 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11216 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11217 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11222 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11223 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11226 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11227 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11236 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11237 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11240 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11241 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11246 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11247 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11250 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11251 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11260 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11261 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11264 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11265 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11270 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11271 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11274 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11275 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11284 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11285 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11288 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11289 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11294 using RT = HybridVector<double,7UL,rowVector>; in testVectorMatrixMultiplication() typedef
11295 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11298 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11299 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11311 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
11312 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11315 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11316 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11321 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
11322 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11325 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11326 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11335 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
11336 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11339 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11340 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11345 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
11346 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11349 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11350 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11359 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11360 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11363 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11364 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11369 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11370 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11373 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11374 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11383 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11384 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11387 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11388 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11393 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11394 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11397 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11398 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11407 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11408 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11411 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11412 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11417 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11418 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11421 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11422 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11431 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11432 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11435 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11436 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11445 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11446 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11449 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11450 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11455 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11456 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11459 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11460 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11469 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11470 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11473 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11474 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11479 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11480 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11483 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11484 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11493 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11494 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11497 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11498 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11503 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11504 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11507 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11508 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11517 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11518 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11521 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11522 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11527 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11528 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11531 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11532 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11541 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
11542 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11545 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11546 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11551 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
11552 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11555 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11556 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11565 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11566 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11569 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11570 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11575 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11576 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11579 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11580 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11589 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11590 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11593 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11594 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11599 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11600 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11603 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11604 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11613 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11614 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11617 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11618 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11623 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11624 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11627 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11628 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11637 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
11638 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11641 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11642 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11647 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
11648 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11651 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11652 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11661 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11662 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11665 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11666 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11671 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11672 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11675 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11676 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11685 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11686 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11689 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11690 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11695 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11696 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11699 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11700 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11709 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11710 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11713 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11714 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11719 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11720 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11723 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11724 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11733 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11734 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11737 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11738 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11743 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11744 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11747 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11748 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11757 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11758 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11761 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11762 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11767 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11768 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11771 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11772 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11781 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11782 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11785 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11786 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11791 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11792 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11795 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11796 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11805 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11806 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11809 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11810 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11815 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11816 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11819 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11820 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11832 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
11833 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11836 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11837 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11842 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
11843 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11846 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11847 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11856 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
11857 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11860 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11861 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11866 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
11867 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11870 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11871 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11880 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11881 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11884 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11885 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11890 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11891 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11894 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11895 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11904 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11905 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11908 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11909 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11914 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11915 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11918 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11919 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11928 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11929 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11932 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11933 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11938 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11939 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11942 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11943 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11952 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11953 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11956 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11957 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11966 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11967 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11970 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11971 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11976 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11977 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11980 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11981 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
11990 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
11991 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11994 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
11995 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12000 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12001 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12004 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12005 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12014 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12015 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12018 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12019 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12024 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12025 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12028 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12029 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12038 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12039 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12042 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12043 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12048 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12049 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12052 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12053 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12062 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12063 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12066 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12067 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12072 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12073 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12076 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12077 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12086 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12087 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12090 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12091 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12096 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12097 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12100 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12101 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12110 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12111 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12114 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12115 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12120 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12121 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12124 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12125 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12134 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12135 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12138 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12139 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12144 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12145 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12148 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12149 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12158 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12159 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12162 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12163 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12168 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12169 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12172 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12173 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12182 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12183 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12186 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12187 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12192 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12193 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12196 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12197 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12206 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12207 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12210 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12211 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12216 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12217 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12220 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12221 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12230 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12231 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12234 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12235 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12240 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12241 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12244 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12245 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12254 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12255 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12258 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12259 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12264 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12265 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12268 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12269 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12278 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12279 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12282 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12283 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12288 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12289 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12292 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12293 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12302 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12303 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12306 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12307 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12312 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12313 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12316 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12317 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12326 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12327 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12330 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12331 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12336 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12337 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12340 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12341 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12353 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
12354 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12357 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12358 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12363 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
12364 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12367 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12368 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12377 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
12378 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12381 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12382 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12387 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
12388 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12391 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12392 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12401 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12402 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12405 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12406 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12411 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12412 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12415 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12416 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12425 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12426 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12429 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12430 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12435 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12436 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12439 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12440 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12449 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12450 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12453 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12454 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12459 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12460 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12463 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12464 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12473 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12474 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12477 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12478 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12487 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12488 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12491 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12492 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12497 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12498 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12501 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12502 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12511 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12512 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12515 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12516 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12521 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12522 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12525 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12526 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12535 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12536 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12539 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12540 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12545 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12546 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12549 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12550 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12559 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12560 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12563 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12564 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12569 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12570 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12573 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12574 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12583 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12584 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12587 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12588 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12593 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12594 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12597 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12598 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12607 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12608 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12611 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12612 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12617 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12618 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12621 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12622 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12631 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12632 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12635 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12636 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12641 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12642 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12645 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12646 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12655 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12656 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12659 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12660 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12665 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12666 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12669 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12670 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12679 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12680 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12683 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12684 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12689 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
12690 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12693 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12694 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12703 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12704 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12707 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12708 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12713 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12714 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12717 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12718 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12727 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12728 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12731 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12732 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12737 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12738 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12741 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12742 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12751 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12752 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12755 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12756 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12761 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12762 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12765 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12766 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12775 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12776 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12779 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12780 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12785 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12786 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12789 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12790 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12799 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12800 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12803 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12804 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12809 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12810 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12813 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12814 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12823 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12824 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12827 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12828 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12833 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12834 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12837 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12838 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12847 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12848 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12851 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12852 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12857 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12858 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12861 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12862 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12874 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
12875 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12878 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12879 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12884 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
12885 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12888 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12889 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12898 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
12899 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12902 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12903 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12908 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
12909 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12912 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12913 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12922 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12923 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12926 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12927 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12932 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12933 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12936 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12937 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12946 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12947 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12950 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12951 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12956 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12957 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12960 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12961 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12970 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12971 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12974 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12975 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12980 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12981 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12984 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12985 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
12994 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
12995 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12998 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
12999 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13008 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13009 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13012 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13013 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13018 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13019 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13022 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13023 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13032 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13033 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13036 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13037 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13042 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13047 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13056 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13057 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13060 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13061 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13066 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13067 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13070 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13071 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13080 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13081 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13084 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13085 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13090 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13091 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13094 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13095 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13104 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13105 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13108 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13109 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13114 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13115 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13118 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13119 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13128 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13129 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13132 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13133 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13138 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13139 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13142 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13143 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13152 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13153 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13156 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13157 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13162 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13163 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13166 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13167 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13176 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13177 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13180 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13181 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13186 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13187 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13190 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13191 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13200 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13201 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13204 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13205 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13210 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13211 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13214 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13215 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13224 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13225 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13228 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13229 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13234 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13235 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13238 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13239 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13248 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13249 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13252 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13253 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13258 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13259 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13262 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13263 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13272 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13273 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13276 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13277 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13282 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13283 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13286 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13287 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13296 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13297 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13300 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13301 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13306 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13307 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13310 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13311 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13320 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13321 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13324 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13325 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13330 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13331 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13334 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13335 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13344 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13345 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13348 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13349 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13354 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13355 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13358 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13359 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13368 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13369 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13372 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13373 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13378 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13379 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13382 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13383 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13395 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
13396 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13399 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13400 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13405 using RT = StaticVector<double,3UL,rowVector>; in testVectorMatrixMultiplication() typedef
13406 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13409 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13410 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13419 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
13420 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13423 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13424 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13429 using RT = HybridVector<double,4UL,rowVector>; in testVectorMatrixMultiplication() typedef
13430 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13433 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13434 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13443 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13444 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13447 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13448 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13453 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13454 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13457 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13458 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13467 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13468 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13471 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13472 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13477 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13478 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13481 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13482 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13491 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13492 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13495 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13496 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13501 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13502 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13505 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13506 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13515 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13516 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13519 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13520 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13529 using RT = CompressedVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13530 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13533 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13534 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13539 using RT = CompressedVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13540 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13543 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13544 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13553 using RT = CompressedVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13554 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13557 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13558 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13563 using RT = CompressedVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13564 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13567 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13568 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13577 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13578 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13581 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13582 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13587 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13588 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13591 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13592 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13601 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13602 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13605 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13606 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13611 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13612 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13615 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13616 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13625 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13626 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13629 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13630 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13635 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13636 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13639 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13640 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13649 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13650 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13653 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13654 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13659 using RT = UniformVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13660 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13663 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13664 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13673 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13674 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13677 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13678 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13683 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13684 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13687 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13688 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13697 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13698 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13701 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13702 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13707 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13708 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13711 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13712 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13721 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13722 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13725 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13726 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13731 using RT = DynamicVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
13732 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13735 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13736 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13745 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13746 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13749 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13750 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13755 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13756 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13759 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13760 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13769 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13770 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13773 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13774 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13779 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13780 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13783 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13784 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13793 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13794 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13797 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13798 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13803 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13804 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13807 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13808 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13817 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13818 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13821 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13822 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13827 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13828 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13831 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13832 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13841 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13842 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13845 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13846 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13851 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13852 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13855 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13856 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13865 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13866 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13869 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13870 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13875 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13876 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13879 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13880 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13889 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13890 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13893 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13894 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13899 using RT = DynamicVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13900 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13903 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13904 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13916 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13917 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13920 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13921 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13926 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13927 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13930 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13931 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13940 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13941 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13944 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13945 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13950 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13951 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13954 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13955 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13964 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13965 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13968 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13969 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13974 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13975 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13978 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13979 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13988 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13989 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13992 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
13993 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
13998 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
13999 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14002 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14003 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14012 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14013 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14016 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14017 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14022 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14023 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14026 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14027 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14036 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14037 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14040 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14041 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14050 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14051 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14054 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14055 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14060 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14061 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14064 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14065 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14074 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14075 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14078 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14079 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14084 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14085 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14088 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14089 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14098 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14099 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14102 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14103 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14108 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14109 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14112 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14113 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14122 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14123 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14126 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14127 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14132 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14133 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14136 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14137 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14146 using RT = ZeroVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
14147 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14150 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14151 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14156 using RT = ZeroVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
14157 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14160 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14161 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14170 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14171 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14174 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14175 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14180 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14181 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14184 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14185 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14194 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14195 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14198 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14199 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14204 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14205 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14208 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14209 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14218 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14219 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14222 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14223 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14228 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14232 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14233 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14242 using RT = ZeroVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
14243 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14246 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14247 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14252 using RT = ZeroVector<complex<int>,rowVector>; in testVectorMatrixMultiplication() typedef
14253 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14256 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14257 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14266 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14267 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14270 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14271 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14276 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14277 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14280 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14281 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14290 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14291 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14294 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14295 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14300 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14301 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14304 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14305 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14314 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14315 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14318 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14319 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14324 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14325 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14328 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14329 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14338 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14339 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14342 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14343 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14348 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14349 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14352 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14353 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14362 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14363 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14366 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14367 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14372 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14373 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14376 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14377 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14386 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14387 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14390 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14391 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14396 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14397 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14400 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14401 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14410 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14411 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14414 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14415 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14420 using RT = ZeroVector<double,rowVector>; in testVectorMatrixMultiplication() typedef
14421 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14424 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testVectorMatrixMultiplication()
14425 …static_assert( TransposeFlag_v<Expr> == TransposeFlag_v<RT>, "Non-matching transpose flag detected… in testVectorMatrixMultiplication()
14454 using RT = StaticMatrix<double,3UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14455 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14458 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14459 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14464 using RT = StaticMatrix<double,3UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14465 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14468 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14469 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14474 using RT = StaticMatrix<double,3UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14475 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14478 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14479 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14484 using RT = StaticMatrix<double,3UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14485 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14488 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14489 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14498 using RT = HybridMatrix<double,3UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14499 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14502 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14503 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14508 using RT = HybridMatrix<double,3UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14509 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14512 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14513 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14518 using RT = HybridMatrix<double,3UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14519 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14522 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14523 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14528 using RT = HybridMatrix<double,3UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14529 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14532 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14533 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14542 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14543 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14546 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14547 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14552 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14553 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14556 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14557 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14562 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14563 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14566 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14567 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14572 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14573 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14576 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14577 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14586 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14587 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14590 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14591 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14596 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14597 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14600 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14601 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14606 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14607 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14610 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14611 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14616 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14617 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14620 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14621 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14630 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14631 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14634 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14635 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14640 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14641 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14644 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14645 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14650 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14651 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14654 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14655 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14660 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14661 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14664 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14665 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14674 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14675 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14678 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14679 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14684 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14685 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14688 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14689 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14698 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14699 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14702 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14703 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14708 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14709 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14712 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14713 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14718 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14719 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14722 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14723 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14728 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14729 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14732 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14733 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14742 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14743 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14746 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14747 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14752 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14753 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14756 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14757 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14762 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14763 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14766 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14767 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14772 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14773 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14776 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14777 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14786 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14787 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14790 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14791 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14796 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14797 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14800 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14801 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14806 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14807 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14810 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14811 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14816 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14817 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14820 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14821 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14830 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14831 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14834 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14835 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14840 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14841 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14844 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14845 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14850 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14851 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14854 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14855 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14860 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14861 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14864 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14865 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14874 using RT = StaticMatrix<complex<int>,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14875 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14878 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14879 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14884 using RT = StaticMatrix<complex<int>,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14885 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14888 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14889 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14894 using RT = StaticMatrix<complex<int>,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14895 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14898 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14899 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14904 using RT = StaticMatrix<complex<int>,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14905 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14908 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14909 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14918 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14919 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14922 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14923 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14928 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
14929 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14932 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14933 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14938 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14939 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14942 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14943 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14948 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
14949 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14952 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14953 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14962 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14963 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14966 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14967 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14972 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14973 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14976 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14977 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14982 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
14983 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14986 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14987 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
14992 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
14993 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14996 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
14997 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15006 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15007 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15010 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15011 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15016 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15017 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15020 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15021 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15026 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15027 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15030 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15031 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15036 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15037 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15040 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15041 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15050 using RT = StaticMatrix<complex<int>,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15051 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15054 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15055 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15060 using RT = StaticMatrix<complex<int>,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15061 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15064 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15065 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15070 using RT = StaticMatrix<complex<int>,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15071 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15074 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15075 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15080 using RT = StaticMatrix<complex<int>,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15081 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15084 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15085 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15094 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15095 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15098 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15099 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15104 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15105 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15108 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15109 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15114 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15115 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15118 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15119 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15124 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15125 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15128 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15129 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15138 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15139 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15142 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15143 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15148 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15149 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15152 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15153 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15158 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15159 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15162 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15163 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15168 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15169 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15172 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15173 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15182 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15183 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15186 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15187 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15192 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15193 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15196 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15197 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15202 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15203 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15206 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15207 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15212 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15213 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15216 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15217 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15226 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15227 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15230 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15231 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15236 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15237 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15240 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15241 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15246 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15247 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15250 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15251 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15256 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15257 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15260 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15261 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15270 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15271 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15274 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15275 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15280 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15281 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15284 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15285 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15290 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15291 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15294 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15295 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15300 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15301 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15304 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15305 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15314 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15315 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15318 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15319 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15324 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15325 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15328 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15329 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15334 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15335 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15338 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15339 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15344 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15345 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15348 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15349 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15358 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15359 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15362 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15363 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15368 using RT = StaticMatrix<double,3UL,5UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15369 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15372 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15373 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15378 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15379 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15382 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15383 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15388 using RT = StaticMatrix<double,3UL,5UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15389 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15392 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15393 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15405 using RT = HybridMatrix<double,5UL,4UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15406 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15409 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15410 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15415 using RT = HybridMatrix<double,5UL,4UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15416 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15419 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15420 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15425 using RT = HybridMatrix<double,5UL,4UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15426 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15429 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15430 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15435 using RT = HybridMatrix<double,5UL,4UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15436 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15439 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15440 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15449 using RT = HybridMatrix<double,5UL,4UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15450 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15453 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15454 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15459 using RT = HybridMatrix<double,5UL,4UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15460 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15463 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15464 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15469 using RT = HybridMatrix<double,5UL,4UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15470 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15473 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15474 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15479 using RT = HybridMatrix<double,5UL,4UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15480 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15483 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15484 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15493 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15494 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15497 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15498 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15503 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15504 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15507 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15508 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15513 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15514 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15517 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15518 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15523 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15524 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15527 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15528 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15537 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15538 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15541 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15542 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15547 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15548 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15551 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15552 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15557 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15558 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15561 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15562 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15567 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15568 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15571 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15572 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15581 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15582 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15585 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15586 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15591 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15592 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15595 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15596 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15601 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15602 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15605 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15606 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15611 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15612 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15615 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15616 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15625 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15626 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15629 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15630 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15635 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15636 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15639 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15640 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15649 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15650 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15653 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15654 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15659 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15660 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15663 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15664 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15669 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15670 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15673 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15674 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15679 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15680 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15683 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15684 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15693 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15694 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15697 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15698 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15703 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15704 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15707 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15708 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15713 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15714 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15717 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15718 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15723 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15724 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15727 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15728 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15737 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15738 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15741 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15742 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15747 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15748 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15751 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15752 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15757 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15758 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15761 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15762 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15767 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15768 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15771 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15772 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15781 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15782 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15785 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15786 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15791 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15792 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15795 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15796 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15801 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15802 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15805 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15806 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15811 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15812 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15815 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15816 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15825 using RT = HybridMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15826 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15829 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15830 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15835 using RT = HybridMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15836 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15839 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15840 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15845 using RT = HybridMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15846 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15849 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15850 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15855 using RT = HybridMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15856 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15859 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15860 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15869 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15870 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15873 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15874 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15879 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15880 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15883 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15884 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15889 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15890 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15893 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15894 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15899 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15900 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15903 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15904 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15913 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15914 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15917 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15918 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15923 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15924 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15927 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15928 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15933 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
15934 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15937 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15938 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15943 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
15944 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15947 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15948 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15957 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15958 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15961 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15962 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15967 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
15968 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15971 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15972 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15977 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15978 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15981 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15982 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
15987 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
15988 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15991 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
15992 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16001 using RT = HybridMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16002 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16005 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16006 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16011 using RT = HybridMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16012 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16015 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16016 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16021 using RT = HybridMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16022 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16025 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16026 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16031 using RT = HybridMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16032 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16035 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16036 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16045 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16046 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16049 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16050 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16055 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16056 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16059 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16060 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16065 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16066 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16069 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16070 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16075 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16076 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16079 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16080 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16089 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16090 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16093 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16094 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16099 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16100 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16103 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16104 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16109 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16110 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16113 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16114 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16119 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16120 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16123 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16124 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16133 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16134 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16137 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16138 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16143 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16144 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16147 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16148 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16153 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16154 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16157 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16158 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16163 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16164 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16167 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16168 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16177 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16178 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16181 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16182 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16187 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16188 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16191 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16192 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16197 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16198 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16201 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16202 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16207 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16208 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16211 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16212 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16221 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16222 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16225 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16226 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16231 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16232 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16235 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16236 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16241 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16242 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16245 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16246 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16251 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16252 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16255 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16256 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16265 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16266 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16269 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16270 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16275 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16276 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16279 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16280 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16285 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16286 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16289 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16290 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16295 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16296 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16299 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16300 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16309 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16310 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16313 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16314 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16319 using RT = HybridMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
16320 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16323 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16324 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16329 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16330 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16333 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16334 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16339 using RT = HybridMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
16340 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16343 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16344 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16356 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16357 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16360 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16361 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16366 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16367 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16370 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16371 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16376 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16377 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16380 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16381 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16386 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16387 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16390 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16391 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16400 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16401 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16404 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16405 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16410 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16411 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16414 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16415 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16420 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16421 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16424 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16425 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16430 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16431 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16434 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16435 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16444 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16445 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16448 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16449 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16454 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16455 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16458 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16459 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16464 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16465 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16468 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16469 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16474 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16475 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16478 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16479 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16488 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16489 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16492 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16493 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16498 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16499 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16502 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16503 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16508 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16509 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16512 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16513 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16518 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16519 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16522 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16523 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16532 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16533 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16536 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16537 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16542 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16543 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16546 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16547 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16552 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16553 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16556 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16557 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16562 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16563 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16566 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16567 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16576 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16577 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16580 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16581 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16586 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16587 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16590 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16591 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16600 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16601 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16604 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16605 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16610 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16611 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16614 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16615 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16620 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16621 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16624 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16625 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16630 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16631 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16634 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16635 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16644 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16645 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16648 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16649 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16654 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16655 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16658 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16659 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16664 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16665 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16668 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16669 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16674 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16675 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16678 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16679 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16688 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16689 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16692 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16693 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16698 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16699 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16702 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16703 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16708 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16709 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16712 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16713 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16718 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16719 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16722 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16723 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16732 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16733 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16736 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16737 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16742 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16743 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16746 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16747 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16752 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16753 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16756 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16757 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16762 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16763 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16766 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16767 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16776 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
16777 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16780 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16781 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16786 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
16787 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16790 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16791 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16796 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
16797 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16800 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16801 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16806 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
16807 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16810 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16811 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16820 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16821 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16824 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16825 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16830 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16831 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16834 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16835 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16840 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16841 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16844 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16845 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16850 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16851 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16854 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16855 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16864 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16865 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16868 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16869 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16874 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16875 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16878 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16879 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16884 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16885 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16888 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16889 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16894 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16895 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16898 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16899 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16908 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16909 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16912 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16913 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16918 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16919 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16922 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16923 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16928 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16929 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16932 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16933 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16938 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
16939 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16942 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16943 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16952 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
16953 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16956 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16957 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16962 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
16963 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16966 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16967 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16972 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
16973 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16976 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16977 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16982 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
16983 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16986 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
16987 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
16996 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
16997 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17000 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17001 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17006 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17007 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17010 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17011 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17016 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17017 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17020 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17021 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17026 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17027 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17030 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17031 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17040 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17041 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17044 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17045 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17050 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17051 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17054 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17055 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17060 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17061 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17064 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17065 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17070 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17071 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17074 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17075 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17084 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17085 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17088 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17089 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17094 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17095 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17098 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17099 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17104 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17105 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17108 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17109 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17114 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17115 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17118 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17119 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17128 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17129 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17132 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17133 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17138 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17139 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17142 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17143 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17148 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17149 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17152 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17153 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17158 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17159 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17162 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17163 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17172 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17173 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17176 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17177 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17182 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17183 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17186 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17187 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17192 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17193 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17196 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17197 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17202 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17203 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17206 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17207 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17216 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17217 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17220 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17221 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17226 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17227 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17230 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17231 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17236 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17237 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17240 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17241 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17246 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17247 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17250 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17251 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17260 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17261 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17264 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17265 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17270 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17271 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17274 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17275 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17280 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17281 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17284 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17285 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17290 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17291 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17294 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17295 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17307 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17308 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17311 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17312 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17317 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17318 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17321 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17322 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17327 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17328 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17331 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17332 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17337 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17338 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17341 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17342 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17351 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17352 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17355 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17356 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17361 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17362 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17365 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17366 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17371 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17372 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17375 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17376 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17381 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17382 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17385 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17386 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17395 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17396 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17399 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17400 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17405 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17406 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17409 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17410 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17415 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17416 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17419 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17420 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17425 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17426 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17429 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17430 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17439 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17440 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17443 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17444 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17449 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17450 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17453 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17454 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17459 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17460 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17463 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17464 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17469 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17470 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17473 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17474 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17483 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17484 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17487 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17488 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17493 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17494 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17497 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17498 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17503 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17504 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17507 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17508 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17513 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17514 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17517 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17518 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17527 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17528 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17531 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17532 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17537 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17538 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17541 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17542 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17551 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17552 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17555 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17556 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17561 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17562 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17565 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17566 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17571 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17572 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17575 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17576 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17581 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17582 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17585 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17586 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17595 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17596 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17599 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17600 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17605 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17606 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17609 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17610 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17615 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17616 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17619 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17620 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17625 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17626 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17629 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17630 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17639 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17640 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17643 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17644 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17649 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17650 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17653 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17654 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17659 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17660 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17663 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17664 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17669 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17670 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17673 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17674 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17683 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17684 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17687 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17688 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17693 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17694 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17697 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17698 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17703 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17704 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17707 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17708 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17713 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17714 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17717 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17718 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17727 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
17728 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17731 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17732 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17737 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
17738 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17741 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17742 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17747 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
17748 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17751 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17752 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17757 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
17758 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17761 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17762 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17771 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17772 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17775 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17776 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17781 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17782 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17785 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17786 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17791 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17792 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17795 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17796 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17801 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17802 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17805 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17806 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17815 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17816 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17819 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17820 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17825 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17826 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17829 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17830 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17835 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17836 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17839 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17840 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17845 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17846 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17849 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17850 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17859 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17860 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17863 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17864 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17869 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17870 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17873 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17874 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17879 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17880 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17883 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17884 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17889 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17890 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17893 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17894 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17903 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
17904 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17907 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17908 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17913 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
17914 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17917 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17918 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17923 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
17924 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17927 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17928 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17933 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
17934 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17937 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17938 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17947 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17948 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17951 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17952 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17957 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17958 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17961 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17962 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17967 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17968 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17971 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17972 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17977 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
17978 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17981 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17982 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
17991 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
17992 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17995 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
17996 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18001 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18002 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18005 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18006 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18011 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18012 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18015 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18016 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18021 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18022 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18025 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18026 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18035 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18036 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18039 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18040 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18045 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18046 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18049 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18050 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18055 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18056 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18059 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18060 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18065 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18066 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18069 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18070 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18079 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18080 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18083 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18084 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18089 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18090 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18093 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18094 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18099 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18100 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18103 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18104 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18109 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18110 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18113 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18114 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18123 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18124 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18127 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18128 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18133 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18134 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18137 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18138 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18143 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18144 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18147 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18148 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18153 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18154 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18157 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18158 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18167 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18168 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18171 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18172 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18177 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18178 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18181 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18182 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18187 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18188 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18191 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18192 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18197 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18198 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18201 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18202 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18211 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18212 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18215 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18216 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18221 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18222 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18225 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18226 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18231 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18232 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18235 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18236 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18241 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18242 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18245 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18246 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18258 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18259 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18262 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18263 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18268 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18269 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18272 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18273 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18278 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18279 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18282 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18283 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18288 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18289 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18292 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18293 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18302 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18303 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18306 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18307 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18312 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18313 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18316 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18317 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18322 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18323 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18326 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18327 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18332 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18333 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18336 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18337 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18346 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18347 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18350 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18351 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18356 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18357 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18360 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18361 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18366 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18367 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18370 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18371 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18376 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18377 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18380 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18381 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18390 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18391 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18394 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18395 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18400 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18401 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18404 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18405 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18410 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18411 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18414 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18415 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18420 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18421 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18424 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18425 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18434 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18435 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18438 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18439 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18444 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18445 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18448 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18449 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18454 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18455 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18458 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18459 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18464 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18465 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18468 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18469 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18478 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18479 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18482 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18483 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18488 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18489 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18492 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18493 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18502 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18503 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18506 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18507 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18512 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18513 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18516 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18517 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18522 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18523 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18526 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18527 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18532 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18533 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18536 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18537 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18546 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18547 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18550 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18551 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18556 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18557 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18560 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18561 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18566 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18567 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18570 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18571 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18576 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18577 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18580 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18581 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18590 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18591 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18594 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18595 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18600 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18601 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18604 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18605 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18610 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18611 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18614 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18615 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18620 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18621 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18624 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18625 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18634 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18635 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18638 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18639 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18644 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18645 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18648 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18649 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18654 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18655 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18658 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18659 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18664 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18665 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18668 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18669 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18678 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
18679 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18682 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18683 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18688 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
18689 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18692 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18693 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18698 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
18699 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18702 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18703 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18708 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
18709 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18712 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18713 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18722 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18723 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18726 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18727 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18732 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18733 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18736 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18737 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18742 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18743 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18746 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18747 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18752 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18753 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18756 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18757 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18766 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18767 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18770 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18771 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18776 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18777 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18780 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18781 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18786 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18787 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18790 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18791 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18796 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18797 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18800 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18801 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18810 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18811 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18814 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18815 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18820 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18821 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18824 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18825 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18830 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18831 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18834 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18835 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18840 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18841 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18844 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18845 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18854 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
18855 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18858 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18859 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18864 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
18865 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18868 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18869 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18874 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
18875 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18878 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18879 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18884 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
18885 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18888 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18889 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18898 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18899 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18902 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18903 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18908 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18909 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18912 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18913 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18918 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18919 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18922 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18923 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18928 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18929 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18932 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18933 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18942 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18943 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18946 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18947 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18952 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18953 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18956 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18957 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18962 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18963 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18966 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18967 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18972 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
18973 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18976 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18977 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18986 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18987 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18990 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
18991 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
18996 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
18997 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19000 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19001 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19006 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19007 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19010 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19011 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19016 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19017 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19020 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19021 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19030 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19031 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19034 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19035 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19040 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19041 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19044 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19045 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19050 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19051 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19054 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19055 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19060 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19061 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19064 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19065 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19074 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19075 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19078 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19079 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19084 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19085 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19088 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19089 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19094 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19095 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19098 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19099 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19104 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19105 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19108 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19109 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19118 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19119 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19122 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19123 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19128 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19129 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19132 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19133 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19138 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19139 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19142 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19143 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19148 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19149 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19152 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19153 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19162 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19163 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19166 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19167 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19172 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19173 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19176 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19177 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19182 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19183 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19186 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19187 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19192 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19193 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19196 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19197 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19209 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19210 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19213 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19214 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19219 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19220 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19223 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19224 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19233 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19234 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19237 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19238 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19243 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19244 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19247 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19248 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19257 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19258 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19261 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19262 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19267 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19268 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19271 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19272 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19281 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19282 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19285 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19286 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19291 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19292 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19295 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19296 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19305 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19306 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19309 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19310 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19315 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19316 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19319 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19320 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19329 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19330 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19333 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19334 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19343 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19344 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19347 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19348 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19353 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19354 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19357 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19358 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19367 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19368 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19371 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19372 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19377 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19378 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19381 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19382 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19391 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19392 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19395 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19396 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19401 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19402 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19405 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19406 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19415 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19416 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19419 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19420 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19425 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19426 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19429 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19430 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19439 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
19440 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19443 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19444 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19449 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
19450 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19453 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19454 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19463 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19464 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19467 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19468 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19473 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19474 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19477 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19478 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19487 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19488 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19491 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19492 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19497 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19498 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19501 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19502 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19511 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19512 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19515 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19516 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19521 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19522 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19525 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19526 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19535 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
19536 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19539 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19540 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19545 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
19546 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19549 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19550 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19559 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19560 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19563 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19564 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19569 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19570 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19573 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19574 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19583 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19584 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19587 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19588 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19593 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19594 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19597 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19598 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19607 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19608 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19611 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19612 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19617 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19618 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19621 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19622 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19631 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19632 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19635 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19636 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19641 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19642 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19645 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19646 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19655 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19656 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19659 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19660 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19665 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19666 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19669 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19670 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19679 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19680 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19683 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19684 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19689 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19690 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19693 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19694 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19703 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19704 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19707 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19708 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19713 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19714 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19717 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19718 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19730 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19731 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19734 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19735 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19740 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19741 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19744 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19745 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19750 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19751 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19754 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19755 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19760 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19761 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19764 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19765 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19774 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19775 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19778 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19779 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19784 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19785 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19788 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19789 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19794 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19795 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19798 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19799 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19804 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19805 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19808 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19809 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19818 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19819 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19822 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19823 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19828 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19829 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19832 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19833 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19838 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19839 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19842 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19843 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19848 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19849 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19852 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19853 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19862 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19863 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19866 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19867 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19872 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19873 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19876 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19877 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19882 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19883 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19886 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19887 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19892 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19893 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19896 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19897 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19906 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19907 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19910 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19911 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19916 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19917 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19920 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19921 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19926 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19927 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19930 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19931 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19936 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19937 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19940 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19941 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19950 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19951 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19954 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19955 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19960 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19961 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19964 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19965 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19974 using RT = CompressedMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19975 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19978 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19979 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19984 using RT = CompressedMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
19985 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19988 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19989 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
19994 using RT = CompressedMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
19995 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19998 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
19999 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20004 using RT = CompressedMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20005 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20008 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20009 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20018 using RT = CompressedMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20019 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20022 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20023 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20028 using RT = CompressedMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20029 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20032 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20033 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20038 using RT = CompressedMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20039 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20042 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20043 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20048 using RT = CompressedMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20049 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20052 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20053 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20062 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20063 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20066 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20067 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20072 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20073 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20076 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20077 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20082 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20083 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20086 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20087 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20092 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20093 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20096 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20097 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20106 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20107 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20110 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20111 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20116 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20117 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20120 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20121 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20126 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20127 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20130 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20131 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20136 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20137 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20140 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20141 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20150 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
20151 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20154 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20155 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20160 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
20161 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20164 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20165 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20170 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
20171 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20174 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20175 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20180 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
20181 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20184 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20185 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20194 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20195 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20198 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20199 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20204 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20205 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20208 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20209 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20214 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20215 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20218 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20219 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20224 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20225 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20228 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20229 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20238 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20239 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20242 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20243 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20248 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20249 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20252 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20253 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20258 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20259 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20262 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20263 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20268 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20269 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20272 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20273 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20282 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20283 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20286 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20287 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20292 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20293 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20296 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20297 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20302 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20303 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20306 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20307 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20312 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20313 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20316 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20317 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20326 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
20327 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20330 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20331 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20336 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
20337 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20340 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20341 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20346 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
20347 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20350 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20351 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20356 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
20357 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20360 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20361 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20370 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20371 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20374 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20375 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20380 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20381 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20384 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20385 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20390 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20391 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20394 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20395 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20400 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20401 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20404 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20405 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20414 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20415 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20418 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20419 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20424 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20425 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20428 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20429 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20434 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20435 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20438 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20439 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20444 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20445 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20448 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20449 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20458 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20459 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20462 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20463 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20468 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20469 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20472 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20473 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20478 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20479 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20482 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20483 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20488 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20489 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20492 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20493 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20502 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20503 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20506 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20507 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20512 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20513 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20516 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20517 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20522 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20523 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20526 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20527 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20532 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20533 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20536 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20537 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20546 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20547 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20550 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20551 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20556 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20557 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20560 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20561 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20566 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20567 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20570 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20571 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20576 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20577 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20580 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20581 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20590 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20591 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20594 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20595 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20600 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20601 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20604 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20605 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20610 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20611 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20614 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20615 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20620 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20621 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20624 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20625 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20634 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20635 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20638 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20639 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20644 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20645 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20648 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20649 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20654 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20655 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20658 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20659 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20664 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20665 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20668 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20669 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20681 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
20682 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20685 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20686 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20691 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
20692 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20695 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20696 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20701 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
20702 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20705 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20706 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20711 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
20712 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20715 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20716 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20725 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
20726 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20729 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20730 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20735 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
20736 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20739 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20740 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20745 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
20746 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20749 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20750 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20755 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
20756 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20759 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20760 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20769 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20770 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20773 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20774 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20779 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20780 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20783 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20784 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20789 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20790 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20793 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20794 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20799 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20800 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20803 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20804 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20813 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20814 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20817 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20818 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20823 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20824 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20827 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20828 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20833 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20834 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20837 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20838 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20843 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20844 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20847 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20848 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20857 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20858 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20861 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20862 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20867 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20868 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20871 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20872 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20877 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20878 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20881 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20882 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20887 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20888 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20891 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20892 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20901 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20902 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20905 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20906 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20911 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20912 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20915 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20916 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20925 using RT = CompressedMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20926 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20929 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20930 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20935 using RT = CompressedMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20936 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20939 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20940 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20945 using RT = CompressedMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20946 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20949 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20950 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20955 using RT = CompressedMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20956 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20959 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20960 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20969 using RT = IdentityMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20970 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20973 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20974 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20979 using RT = IdentityMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
20980 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20983 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20984 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20989 using RT = IdentityMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
20990 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20993 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
20994 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
20999 using RT = IdentityMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21000 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21003 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21004 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21013 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21014 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21017 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21018 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21023 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21024 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21027 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21028 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21033 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21034 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21037 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21038 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21043 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21044 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21047 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21048 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21057 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21058 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21061 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21062 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21067 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21068 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21071 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21072 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21077 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21078 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21081 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21082 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21087 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21088 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21091 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21092 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21101 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21102 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21105 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21106 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21111 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21112 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21115 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21116 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21121 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21122 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21125 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21126 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21131 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21132 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21135 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21136 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21145 using RT = SymmetricMatrix< UniformMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21146 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21149 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21150 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21155 using RT = SymmetricMatrix< UniformMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21156 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21159 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21160 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21165 using RT = SymmetricMatrix< UniformMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21166 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21169 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21170 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21175 using RT = SymmetricMatrix< UniformMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21176 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21179 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21180 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21189 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21190 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21193 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21194 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21199 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21200 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21203 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21204 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21209 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21210 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21213 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21214 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21219 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21220 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21223 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21224 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21233 using RT = HermitianMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21234 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21237 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21238 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21243 using RT = HermitianMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21244 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21247 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21248 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21253 using RT = HermitianMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21254 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21257 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21258 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21263 using RT = HermitianMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21264 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21267 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21268 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21277 using RT = HermitianMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21278 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21281 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21282 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21287 using RT = HermitianMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21288 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21291 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21292 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21297 using RT = HermitianMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21298 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21301 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21302 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21307 using RT = HermitianMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21308 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21311 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21312 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21321 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21322 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21325 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21326 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21331 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21332 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21335 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21336 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21341 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21342 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21345 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21346 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21351 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21352 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21355 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21356 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21365 using RT = UniLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21366 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21369 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21370 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21375 using RT = UniLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21376 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21379 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21380 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21385 using RT = UniLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21386 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21389 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21390 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21395 using RT = UniLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21396 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21399 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21400 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21409 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21410 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21413 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21414 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21419 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21420 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21423 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21424 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21429 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21430 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21433 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21434 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21439 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21440 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21443 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21444 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21453 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21454 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21457 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21458 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21463 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21464 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21467 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21468 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21473 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21474 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21477 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21478 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21483 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21484 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21487 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21488 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21497 using RT = UniUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21498 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21501 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21502 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21507 using RT = UniUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21508 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21511 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21512 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21517 using RT = UniUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21518 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21521 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21522 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21527 using RT = UniUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21528 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21531 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21532 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21541 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21542 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21545 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21546 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21551 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21552 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21555 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21556 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21561 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21562 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21565 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21566 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21571 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21572 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21575 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21576 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21585 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21586 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21589 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21590 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21595 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21596 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21599 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21600 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21605 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
21606 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21609 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21610 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21615 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
21616 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21619 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21620 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21632 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21633 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21636 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21637 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21642 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21643 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21646 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21647 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21652 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21653 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21656 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21657 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21662 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21663 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21666 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21667 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21676 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21677 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21680 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21681 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21686 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21687 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21690 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21691 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21696 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21697 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21700 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21701 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21706 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21707 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21710 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21711 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21720 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21721 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21724 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21725 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21730 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21731 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21734 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21735 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21740 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21741 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21744 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21745 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21750 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21751 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21754 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21755 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21764 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21765 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21768 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21769 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21774 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21775 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21778 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21779 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21784 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21785 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21788 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21789 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21794 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21795 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21798 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21799 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21808 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21809 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21812 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21813 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21818 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21819 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21822 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21823 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21828 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21829 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21832 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21833 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21838 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21839 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21842 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21843 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21852 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21853 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21856 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21857 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21862 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21863 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21866 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21867 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21876 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21877 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21880 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21881 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21886 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21887 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21890 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21891 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21896 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21897 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21900 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21901 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21906 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21907 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21910 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21911 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21920 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21921 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21924 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21925 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21930 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21931 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21934 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21935 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21940 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21941 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21944 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21945 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21950 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21951 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21954 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21955 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21964 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21965 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21968 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21969 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21974 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
21975 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21978 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21979 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21984 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21985 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21988 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21989 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
21994 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
21995 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21998 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
21999 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22008 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22009 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22012 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22013 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22018 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22019 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22022 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22023 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22028 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22029 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22032 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22033 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22038 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22039 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22042 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22043 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22052 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
22053 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22056 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22057 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22062 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
22063 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22066 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22067 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22072 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
22073 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22076 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22077 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22082 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
22083 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22086 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22087 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22096 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22097 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22100 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22101 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22106 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22107 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22110 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22111 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22116 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22117 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22120 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22121 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22126 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22127 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22130 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22131 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22140 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22141 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22144 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22145 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22150 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22151 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22154 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22155 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22160 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22161 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22164 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22165 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22170 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22171 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22174 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22175 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22184 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22185 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22188 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22189 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22194 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22195 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22198 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22199 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22204 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22205 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22208 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22209 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22214 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22215 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22218 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22219 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22228 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
22229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22232 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22233 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22238 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
22239 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22242 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22243 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22248 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
22249 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22252 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22253 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22258 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
22259 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22262 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22263 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22272 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22273 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22276 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22277 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22282 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22283 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22286 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22287 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22292 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22293 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22296 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22297 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22302 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22303 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22306 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22307 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22316 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22317 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22320 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22321 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22326 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22327 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22330 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22331 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22336 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22337 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22340 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22341 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22346 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22347 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22350 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22351 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22360 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22361 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22364 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22365 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22370 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22371 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22374 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22375 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22380 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22381 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22384 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22385 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22390 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22391 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22394 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22395 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22404 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22405 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22408 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22409 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22414 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22415 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22418 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22419 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22424 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22425 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22428 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22429 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22434 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22435 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22438 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22439 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22448 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22449 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22452 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22453 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22458 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22459 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22462 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22463 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22468 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22469 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22472 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22473 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22478 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22479 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22482 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22483 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22492 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22493 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22496 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22497 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22502 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22503 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22506 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22507 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22512 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22513 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22516 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22517 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22522 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22523 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22526 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22527 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22536 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22537 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22540 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22541 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22546 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22547 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22550 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22551 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22556 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22557 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22560 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22561 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22566 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22567 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22570 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22571 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22583 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
22584 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22587 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22588 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22593 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
22594 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22597 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22598 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22603 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
22604 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22607 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22608 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22613 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
22614 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22617 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22618 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22627 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
22628 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22631 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22632 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22637 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
22638 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22641 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22642 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22647 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
22648 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22651 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22652 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22657 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
22658 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22661 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22662 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22671 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22672 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22675 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22676 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22681 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22682 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22685 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22686 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22691 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22692 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22695 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22696 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22701 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22702 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22705 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22706 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22715 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22716 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22719 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22720 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22725 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22726 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22729 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22730 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22735 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22736 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22739 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22740 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22745 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22746 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22749 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22750 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22759 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22760 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22763 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22764 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22769 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22770 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22773 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22774 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22779 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22780 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22783 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22784 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22789 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22790 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22793 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22794 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22803 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22804 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22807 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22808 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22813 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22814 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22817 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22818 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22827 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22828 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22831 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22832 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22837 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22838 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22841 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22842 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22847 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22848 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22851 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22852 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22857 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22858 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22861 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22862 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22871 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
22872 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22875 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22876 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22881 using RT = SymmetricMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
22882 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22885 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22886 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22891 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
22892 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22895 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22896 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22901 using RT = SymmetricMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
22902 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22905 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22906 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22915 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22916 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22919 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22920 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22925 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22926 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22929 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22930 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22935 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22936 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22939 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22940 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22945 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22946 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22949 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22950 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22959 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22960 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22963 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22964 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22969 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
22970 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22973 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22974 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22979 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22980 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22983 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22984 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
22989 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
22990 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22993 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
22994 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23003 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23004 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23007 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23008 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23013 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23014 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23017 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23018 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23023 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23024 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23027 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23028 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23033 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23034 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23037 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23038 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23047 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23048 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23051 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23052 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23057 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23058 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23061 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23062 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23067 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23068 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23071 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23072 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23077 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23078 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23081 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23082 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23091 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23092 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23095 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23096 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23101 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23102 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23105 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23106 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23111 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23112 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23115 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23116 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23121 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23122 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23125 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23126 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23135 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23136 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23139 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23140 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23145 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23146 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23149 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23150 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23155 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23156 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23159 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23160 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23165 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23166 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23169 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23170 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23179 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23180 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23183 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23184 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23189 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23190 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23193 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23194 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23199 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23200 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23203 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23204 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23209 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23210 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23213 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23214 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23223 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23224 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23227 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23228 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23233 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23234 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23237 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23238 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23243 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23244 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23247 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23248 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23253 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23254 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23257 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23258 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23267 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23268 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23271 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23272 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23277 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23278 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23281 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23282 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23287 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23288 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23291 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23292 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23297 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23298 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23301 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23302 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23311 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23312 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23315 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23316 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23321 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23322 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23325 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23326 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23331 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23332 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23335 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23336 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23341 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23342 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23345 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23346 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23355 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23356 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23359 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23360 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23365 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23366 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23369 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23370 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23375 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23376 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23379 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23380 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23385 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23386 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23389 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23390 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23399 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23400 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23403 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23404 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23409 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23410 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23413 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23414 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23419 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23420 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23423 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23424 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23429 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23430 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23433 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23434 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23443 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23444 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23447 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23448 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23453 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23454 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23457 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23458 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23463 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23464 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23467 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23468 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23473 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23474 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23477 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23478 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23487 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23488 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23491 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23492 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23497 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
23498 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23501 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23502 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23507 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23508 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23511 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23512 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23517 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
23518 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23521 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23522 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23534 using RT = StaticMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
23535 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23538 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23539 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23544 using RT = StaticMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
23545 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23548 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23549 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23554 using RT = StaticMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
23555 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23558 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23559 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23564 using RT = StaticMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
23565 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23568 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23569 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23578 using RT = HybridMatrix<complex<int>,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
23579 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23582 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23583 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23588 using RT = HybridMatrix<complex<int>,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
23589 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23592 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23593 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23598 using RT = HybridMatrix<complex<int>,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
23599 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23602 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23603 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23608 using RT = HybridMatrix<complex<int>,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
23609 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23612 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23613 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23622 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23623 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23626 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23627 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23632 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23633 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23636 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23637 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23642 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23643 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23646 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23647 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23652 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23653 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23656 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23657 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23666 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23667 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23670 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23671 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23676 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23677 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23680 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23681 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23686 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23687 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23690 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23691 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23696 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23697 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23700 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23701 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23710 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23711 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23714 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23715 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23720 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23721 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23724 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23725 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23730 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23731 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23734 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23735 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23740 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23741 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23744 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23745 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23754 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23755 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23758 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23759 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23764 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23765 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23768 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23769 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23778 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23779 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23782 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23783 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23788 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23789 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23792 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23793 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23798 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23799 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23802 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23803 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23808 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23809 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23812 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23813 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23822 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
23823 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23826 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23827 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23832 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
23833 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23836 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23837 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23842 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
23843 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23846 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23847 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23852 using RT = SymmetricMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
23853 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23856 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23857 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23866 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23867 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23870 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23871 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23876 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23877 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23880 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23881 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23886 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23887 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23890 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23891 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23896 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23897 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23900 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23901 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23910 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23911 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23914 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23915 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23920 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23921 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23924 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23925 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23930 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23931 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23934 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23935 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23940 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23941 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23944 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23945 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23954 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23955 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23958 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23959 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23964 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23965 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23968 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23969 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23974 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23975 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23978 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23979 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23984 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
23985 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23988 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
23989 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
23998 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
23999 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24002 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24003 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24008 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24009 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24012 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24013 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24018 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24019 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24022 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24023 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24028 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24029 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24032 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24033 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24042 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24047 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24052 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24053 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24056 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24057 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24062 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24063 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24066 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24067 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24072 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24073 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24076 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24077 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24086 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24087 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24090 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24091 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24096 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24097 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24100 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24101 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24106 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24107 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24110 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24111 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24116 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24117 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24120 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24121 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24130 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24131 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24134 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24135 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24140 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24141 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24144 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24145 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24150 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24151 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24154 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24155 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24160 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24161 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24164 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24165 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24174 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24175 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24178 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24179 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24184 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24185 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24188 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24189 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24194 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24195 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24198 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24199 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24204 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24205 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24208 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24209 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24218 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24219 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24222 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24223 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24228 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24232 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24233 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24238 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24239 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24242 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24243 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24248 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24249 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24252 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24253 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24262 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24263 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24266 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24267 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24272 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24273 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24276 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24277 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24282 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24283 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24286 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24287 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24292 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24293 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24296 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24297 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24306 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24307 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24310 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24311 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24316 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24317 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24320 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24321 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24326 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24327 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24330 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24331 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24336 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24337 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24340 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24341 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24350 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24351 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24354 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24355 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24360 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24361 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24364 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24365 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24370 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24371 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24374 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24375 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24380 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24381 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24384 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24385 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24394 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24395 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24398 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24399 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24404 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24405 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24408 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24409 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24414 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24415 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24418 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24419 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24424 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24425 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24428 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24429 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24438 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24439 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24442 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24443 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24448 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24449 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24452 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24453 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24458 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24459 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24462 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24463 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24468 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24469 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24472 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24473 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24485 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
24486 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24489 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24490 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24495 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
24496 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24499 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24500 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24505 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
24506 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24509 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24510 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24515 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
24516 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24519 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24520 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24529 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
24530 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24533 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24534 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24539 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
24540 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24543 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24544 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24549 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
24550 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24553 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24554 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24559 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
24560 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24563 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24564 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24573 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24574 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24577 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24578 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24583 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24584 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24587 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24588 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24593 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24594 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24597 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24598 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24603 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24604 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24607 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24608 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24617 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24618 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24621 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24622 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24627 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24628 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24631 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24632 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24637 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24638 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24641 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24642 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24647 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24648 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24651 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24652 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24661 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24662 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24665 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24666 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24671 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24672 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24675 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24676 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24681 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24682 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24685 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24686 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24691 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24692 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24695 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24696 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24705 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24706 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24709 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24710 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24715 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24716 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24719 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24720 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24729 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24730 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24733 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24734 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24739 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24740 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24743 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24744 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24749 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24750 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24753 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24754 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24759 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24760 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24763 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24764 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24773 using RT = SymmetricMatrix< UniformMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
24774 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24777 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24778 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24783 using RT = SymmetricMatrix< UniformMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
24784 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24787 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24788 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24793 using RT = SymmetricMatrix< UniformMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
24794 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24797 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24798 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24803 using RT = SymmetricMatrix< UniformMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
24804 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24807 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24808 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24817 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24818 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24821 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24822 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24827 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24828 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24831 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24832 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24837 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24838 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24841 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24842 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24847 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24848 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24851 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24852 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24861 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24862 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24865 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24866 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24871 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24872 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24875 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24876 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24881 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24882 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24885 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24886 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24891 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24892 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24895 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24896 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24905 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24906 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24909 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24910 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24915 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
24916 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24919 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24920 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24925 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24926 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24929 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24930 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24935 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
24936 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24939 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24940 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24949 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24950 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24953 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24954 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24959 using RT = UniformMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24960 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24963 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24964 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24969 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24970 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24973 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24974 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24979 using RT = UniformMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
24980 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24983 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24984 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
24993 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
24994 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24997 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
24998 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25003 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25004 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25007 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25008 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25013 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25014 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25017 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25018 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25023 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25024 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25027 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25028 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25037 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25038 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25041 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25042 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25047 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25048 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25051 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25052 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25057 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25058 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25061 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25062 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25067 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25068 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25071 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25072 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25081 using RT = DynamicMatrix<int,rowMajor>; in testMatrixMatrixMultiplication() typedef
25082 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25085 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25086 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25091 using RT = DynamicMatrix<int,rowMajor>; in testMatrixMatrixMultiplication() typedef
25092 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25095 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25096 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25101 using RT = DynamicMatrix<int,columnMajor>; in testMatrixMatrixMultiplication() typedef
25102 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25105 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25106 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25111 using RT = DynamicMatrix<int,columnMajor>; in testMatrixMatrixMultiplication() typedef
25112 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25115 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25116 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25125 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25126 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25129 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25130 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25135 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25136 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25139 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25140 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25145 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25146 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25149 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25150 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25155 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25156 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25159 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25160 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25169 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25170 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25173 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25174 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25179 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25180 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25183 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25184 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25189 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25190 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25193 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25194 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25199 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25200 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25203 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25204 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25213 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25214 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25217 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25218 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25223 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25224 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25227 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25228 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25233 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25234 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25237 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25238 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25243 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25244 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25247 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25248 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25257 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25258 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25261 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25262 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25267 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25268 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25271 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25272 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25277 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25278 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25281 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25282 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25287 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25288 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25291 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25292 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25301 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25302 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25305 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25306 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25311 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25312 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25315 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25316 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25321 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25322 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25325 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25326 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25331 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25332 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25335 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25336 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25345 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25346 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25349 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25350 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25355 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25356 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25359 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25360 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25365 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25366 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25369 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25370 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25375 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25376 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25379 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25380 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25389 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25390 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25393 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25394 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25399 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25400 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25403 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25404 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25409 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25410 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25413 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25414 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25419 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25420 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25423 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25424 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25436 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25437 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25440 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25441 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25446 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25447 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25450 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25451 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25456 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25457 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25460 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25461 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25466 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25467 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25470 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25471 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25480 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25481 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25484 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25485 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25490 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25491 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25494 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25495 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25500 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25501 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25504 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25505 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25510 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25511 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25514 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25515 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25524 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25525 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25528 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25529 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25534 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25535 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25538 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25539 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25544 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25545 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25548 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25549 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25554 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25555 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25558 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25559 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25568 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25569 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25572 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25573 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25578 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25579 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25582 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25583 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25588 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25589 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25592 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25593 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25598 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25599 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25602 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25603 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25612 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25613 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25616 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25617 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25622 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25623 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25626 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25627 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25632 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25633 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25636 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25637 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25642 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25643 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25646 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25647 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25656 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25657 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25660 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25661 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25666 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25667 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25670 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25671 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25680 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25681 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25684 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25685 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25690 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25691 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25694 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25695 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25700 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25701 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25704 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25705 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25710 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25711 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25714 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25715 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25724 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25725 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25728 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25729 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25734 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25735 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25738 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25739 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25744 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25745 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25748 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25749 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25754 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25755 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25758 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25759 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25768 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25769 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25772 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25773 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25778 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25779 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25782 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25783 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25788 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25789 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25792 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25793 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25798 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25799 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25802 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25803 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25812 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25813 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25816 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25817 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25822 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25823 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25826 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25827 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25832 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25833 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25836 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25837 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25842 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25843 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25846 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25847 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25856 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
25857 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25860 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25861 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25866 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
25867 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25870 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25871 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25876 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
25877 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25880 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25881 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25886 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
25887 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25890 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25891 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25900 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25901 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25904 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25905 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25910 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25911 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25914 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25915 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25920 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25921 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25924 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25925 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25930 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25931 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25934 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25935 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25944 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25945 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25948 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25949 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25954 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25955 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25958 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25959 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25964 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25965 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25968 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25969 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25974 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
25975 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25978 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25979 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25988 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25989 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25992 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
25993 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
25998 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
25999 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26002 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26003 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26008 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26009 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26012 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26013 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26018 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26019 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26022 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26023 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26032 using RT = ZeroMatrix<int,rowMajor>; in testMatrixMatrixMultiplication() typedef
26033 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26036 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26037 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26042 using RT = ZeroMatrix<int,rowMajor>; in testMatrixMatrixMultiplication() typedef
26043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26047 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26052 using RT = ZeroMatrix<int,columnMajor>; in testMatrixMatrixMultiplication() typedef
26053 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26056 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26057 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26062 using RT = ZeroMatrix<int,columnMajor>; in testMatrixMatrixMultiplication() typedef
26063 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26066 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26067 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26076 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26077 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26080 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26081 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26086 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26087 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26090 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26091 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26096 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26097 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26100 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26101 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26106 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26107 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26110 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26111 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26120 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26121 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26124 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26125 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26130 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26131 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26134 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26135 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26140 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26141 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26144 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26145 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26150 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26151 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26154 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26155 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26164 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26165 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26168 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26169 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26174 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26175 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26178 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26179 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26184 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26185 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26188 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26189 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26194 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26195 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26198 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26199 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26208 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26209 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26212 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26213 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26218 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26219 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26222 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26223 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26228 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26232 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26233 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26238 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26239 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26242 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26243 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26252 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26253 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26256 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26257 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26262 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26263 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26266 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26267 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26272 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26273 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26276 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26277 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26282 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26283 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26286 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26287 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26296 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26297 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26300 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26301 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26306 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26307 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26310 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26311 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26316 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26317 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26320 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26321 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26326 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26327 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26330 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26331 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26340 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26341 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26344 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26345 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26350 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26351 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26354 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26355 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26360 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26361 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26364 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26365 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26370 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26371 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26374 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26375 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26387 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
26388 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26391 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26392 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26397 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
26398 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26401 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26402 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26407 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
26408 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26411 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26412 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26417 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
26418 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26421 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26422 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26431 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
26432 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26435 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26436 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26441 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
26442 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26445 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26446 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26451 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
26452 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26455 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26456 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26461 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
26462 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26465 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26466 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26475 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26476 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26479 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26480 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26485 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26486 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26489 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26490 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26495 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26496 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26499 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26500 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26505 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26506 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26509 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26510 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26519 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26520 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26523 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26524 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26529 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26530 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26533 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26534 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26539 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26540 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26543 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26544 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26549 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26550 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26553 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26554 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26563 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26564 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26567 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26568 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26573 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26574 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26577 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26578 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26583 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26584 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26587 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26588 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26593 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26594 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26597 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26598 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26607 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26608 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26611 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26612 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26617 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26618 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26621 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26622 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26631 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26632 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26635 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26636 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26641 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26642 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26645 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26646 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26651 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26652 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26655 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26656 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26661 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26662 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26665 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26666 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26675 using RT = HermitianMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
26676 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26679 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26680 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26685 using RT = HermitianMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
26686 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26689 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26690 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26695 using RT = HermitianMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
26696 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26699 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26700 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26705 using RT = HermitianMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
26706 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26709 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26710 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26719 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26720 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26723 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26724 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26729 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26730 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26733 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26734 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26739 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26740 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26743 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26744 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26749 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26750 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26753 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26754 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26763 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26764 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26767 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26768 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26773 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26774 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26777 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26778 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26783 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26784 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26787 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26788 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26793 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26794 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26797 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26798 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26807 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
26808 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26811 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26812 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26817 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
26818 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26821 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26822 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26827 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
26828 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26831 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26832 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26837 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
26838 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26841 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26842 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26851 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26852 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26855 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26856 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26861 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26862 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26865 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26866 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26871 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26872 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26875 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26876 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26881 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26882 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26885 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26886 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26895 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26899 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26900 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26905 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26906 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26909 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26910 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26915 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26916 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26919 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26920 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26925 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26926 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26929 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26930 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26939 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26940 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26943 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26944 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26949 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
26950 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26953 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26954 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26959 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26960 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26963 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26964 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26969 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
26970 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26973 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26974 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26983 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
26984 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26987 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26988 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
26993 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
26994 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26997 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
26998 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27003 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27004 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27007 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27008 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27013 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27014 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27017 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27018 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27027 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27028 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27031 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27032 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27037 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27038 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27041 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27042 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27047 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27048 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27051 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27052 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27057 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27058 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27061 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27062 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27071 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27072 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27075 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27076 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27081 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27082 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27085 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27086 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27091 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27092 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27095 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27096 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27101 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27102 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27105 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27106 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27115 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27116 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27119 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27120 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27125 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27126 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27129 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27130 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27135 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27136 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27139 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27140 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27145 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27146 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27149 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27150 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27159 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27160 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27163 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27164 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27169 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27170 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27173 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27174 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27179 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27180 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27183 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27184 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27189 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27190 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27193 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27194 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27203 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27204 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27207 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27208 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27213 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27214 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27217 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27218 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27223 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27224 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27227 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27228 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27233 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27234 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27237 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27238 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27247 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27248 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27251 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27252 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27257 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27258 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27261 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27262 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27267 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27268 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27271 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27272 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27277 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27278 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27281 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27282 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27291 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27292 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27295 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27296 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27301 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
27302 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27305 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27306 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27311 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27312 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27315 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27316 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27321 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
27322 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27325 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27326 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27338 using RT = StaticMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
27339 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27342 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27343 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27348 using RT = StaticMatrix<complex<int>,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
27349 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27352 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27353 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27358 using RT = StaticMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
27359 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27362 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27363 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27368 using RT = StaticMatrix<complex<int>,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
27369 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27372 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27373 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27382 using RT = HybridMatrix<complex<int>,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
27383 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27386 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27387 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27392 using RT = HybridMatrix<complex<int>,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
27393 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27396 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27397 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27402 using RT = HybridMatrix<complex<int>,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
27403 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27406 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27407 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27412 using RT = HybridMatrix<complex<int>,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
27413 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27416 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27417 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27426 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27427 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27430 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27431 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27436 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27437 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27440 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27441 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27446 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27447 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27450 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27451 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27456 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27457 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27460 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27461 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27470 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27471 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27474 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27475 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27480 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27481 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27484 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27485 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27490 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27491 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27494 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27495 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27500 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27501 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27504 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27505 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27514 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27515 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27518 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27519 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27524 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27525 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27528 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27529 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27534 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27535 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27538 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27539 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27544 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27545 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27548 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27549 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27558 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27559 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27562 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27563 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27568 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27569 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27572 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27573 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27582 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27583 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27586 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27587 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27592 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27593 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27596 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27597 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27602 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27603 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27606 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27607 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27612 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27613 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27616 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27617 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27626 using RT = HermitianMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
27627 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27630 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27631 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27636 using RT = HermitianMatrix< DynamicMatrix<complex<int>,rowMajor> >; in testMatrixMatrixMultiplication() typedef
27637 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27640 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27641 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27646 using RT = HermitianMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
27647 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27650 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27651 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27656 using RT = HermitianMatrix< DynamicMatrix<complex<int>,columnMajor> >; in testMatrixMatrixMultiplication() typedef
27657 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27660 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27661 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27670 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27671 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27674 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27675 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27680 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27681 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27684 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27685 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27690 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27691 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27694 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27695 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27700 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27701 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27704 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27705 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27714 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27715 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27718 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27719 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27724 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27725 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27728 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27729 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27734 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27735 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27738 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27739 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27744 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27745 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27748 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27749 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27758 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27759 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27762 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27763 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27768 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27769 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27772 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27773 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27778 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27779 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27782 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27783 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27788 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27789 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27792 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27793 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27802 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27803 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27806 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27807 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27812 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27813 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27816 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27817 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27822 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27823 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27826 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27827 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27832 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27833 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27836 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27837 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27846 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27847 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27850 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27851 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27856 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27857 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27860 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27861 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27866 using RT = ZeroMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27867 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27870 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27871 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27876 using RT = ZeroMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27877 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27880 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27881 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27890 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27891 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27894 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27895 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27900 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27901 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27904 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27905 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27910 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27911 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27914 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27915 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27920 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27921 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27924 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27925 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27934 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27935 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27938 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27939 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27944 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27945 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27948 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27949 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27954 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27955 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27958 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27959 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27964 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27965 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27968 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27969 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27978 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27979 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27982 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27983 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27988 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
27989 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27992 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
27993 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
27998 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
27999 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28002 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28003 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28008 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28009 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28012 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28013 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28022 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28023 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28026 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28027 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28032 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28033 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28036 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28037 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28042 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28047 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28052 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28053 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28056 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28057 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28066 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28067 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28070 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28071 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28076 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28077 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28080 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28081 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28086 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28087 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28090 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28091 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28096 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28097 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28100 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28101 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28110 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28111 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28114 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28115 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28120 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28121 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28124 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28125 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28130 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28131 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28134 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28135 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28140 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28141 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28144 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28145 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28154 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28155 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28158 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28159 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28164 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28165 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28168 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28169 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28174 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28175 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28178 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28179 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28184 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28185 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28188 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28189 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28198 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28199 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28202 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28203 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28208 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28209 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28212 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28213 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28218 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28219 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28222 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28223 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28228 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28229 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28232 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28233 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28242 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28243 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28246 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28247 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28252 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28253 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28256 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28257 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28262 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28263 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28266 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28267 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28272 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28273 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28276 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28277 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28289 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
28290 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28293 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28294 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28299 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
28300 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28303 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28304 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28309 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
28310 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28313 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28314 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28319 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
28320 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28323 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28324 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28333 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
28334 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28337 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28338 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28343 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
28344 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28347 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28348 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28353 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
28354 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28357 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28358 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28363 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
28364 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28367 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28368 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28377 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28378 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28381 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28382 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28387 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28388 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28391 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28392 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28397 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28398 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28401 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28402 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28407 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28408 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28411 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28412 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28421 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28422 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28425 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28426 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28431 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28432 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28435 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28436 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28441 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28442 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28445 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28446 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28451 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28452 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28455 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28456 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28465 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28466 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28469 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28470 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28475 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28476 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28479 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28480 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28485 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28486 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28489 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28490 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28495 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28496 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28499 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28500 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28509 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28510 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28513 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28514 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28519 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28520 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28523 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28524 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28533 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28534 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28537 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28538 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28543 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28544 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28547 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28548 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28553 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28554 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28557 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28558 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28563 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28564 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28567 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28568 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28577 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
28578 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28581 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28582 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28587 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
28588 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28591 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28592 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28597 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
28598 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28601 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28602 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28607 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
28608 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28611 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28612 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28621 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28622 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28625 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28626 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28631 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28632 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28635 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28636 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28641 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28642 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28645 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28646 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28651 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28652 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28655 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28656 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28665 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28666 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28669 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28670 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28675 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28676 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28679 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28680 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28685 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28686 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28689 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28690 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28695 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28696 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28699 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28700 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28709 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28710 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28713 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28714 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28719 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28720 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28723 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28724 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28729 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28730 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28733 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28734 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28739 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28740 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28743 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28744 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28753 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28754 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28757 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28758 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28763 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28764 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28767 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28768 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28773 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28774 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28777 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28778 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28783 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28784 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28787 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28788 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28797 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28798 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28801 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28802 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28807 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28808 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28811 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28812 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28817 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28818 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28821 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28822 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28827 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28828 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28831 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28832 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28841 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28842 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28845 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28846 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28851 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
28852 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28855 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28856 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28861 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28862 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28865 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28866 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28871 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
28872 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28875 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28876 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28885 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28886 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28889 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28890 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28895 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
28896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28899 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28900 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28905 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28906 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28909 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28910 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28915 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
28916 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28919 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28920 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28929 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
28930 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28933 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28934 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28939 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
28940 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28943 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28944 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28949 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
28950 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28953 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28954 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28959 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
28960 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28963 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28964 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28973 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
28974 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28977 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28978 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28983 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
28984 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28987 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28988 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
28993 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
28994 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28997 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
28998 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29003 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29004 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29007 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29008 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29017 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29018 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29021 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29022 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29027 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29028 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29031 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29032 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29037 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29038 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29041 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29042 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29047 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29048 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29051 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29052 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29061 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29062 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29065 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29066 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29071 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29072 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29075 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29076 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29081 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29082 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29085 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29086 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29091 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29092 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29095 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29096 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29105 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29106 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29109 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29110 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29115 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29116 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29119 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29120 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29125 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29126 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29129 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29130 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29135 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29136 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29139 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29140 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29149 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29150 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29153 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29154 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29159 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29160 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29163 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29164 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29169 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29170 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29173 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29174 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29179 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29180 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29183 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29184 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29193 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29194 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29197 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29198 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29203 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29204 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29207 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29208 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29213 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29214 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29217 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29218 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29223 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29224 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29227 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29228 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29240 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
29241 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29244 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29245 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29250 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
29251 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29254 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29255 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29260 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
29261 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29264 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29265 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29270 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
29271 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29274 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29275 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29284 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
29285 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29288 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29289 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29294 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
29295 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29298 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29299 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29304 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
29305 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29308 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29309 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29314 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
29315 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29318 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29319 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29328 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29329 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29332 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29333 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29338 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29339 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29342 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29343 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29348 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29349 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29352 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29353 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29358 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29359 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29362 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29363 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29372 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29373 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29376 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29377 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29382 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29383 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29386 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29387 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29392 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29393 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29396 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29397 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29402 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29403 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29406 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29407 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29416 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29417 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29420 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29421 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29426 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29427 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29430 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29431 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29436 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29437 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29440 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29441 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29446 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29447 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29450 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29451 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29460 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29461 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29464 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29465 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29470 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29471 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29474 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29475 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29484 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29485 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29488 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29489 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29494 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29495 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29498 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29499 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29504 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29505 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29508 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29509 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29514 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29515 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29518 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29519 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29528 using RT = UniLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29529 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29532 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29533 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29538 using RT = UniLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29539 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29542 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29543 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29548 using RT = UniLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29549 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29552 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29553 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29558 using RT = UniLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29559 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29562 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29563 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29572 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29573 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29576 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29577 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29582 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29583 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29586 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29587 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29592 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29593 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29596 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29597 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29602 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29603 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29606 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29607 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29616 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29617 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29620 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29621 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29626 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29627 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29630 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29631 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29636 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29637 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29640 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29641 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29646 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29647 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29650 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29651 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29660 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
29661 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29664 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29665 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29670 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
29671 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29674 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29675 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29680 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
29681 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29684 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29685 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29690 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
29691 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29694 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29695 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29704 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29705 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29708 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29709 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29714 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29715 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29718 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29719 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29724 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29725 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29728 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29729 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29734 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29735 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29738 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29739 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29748 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29749 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29752 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29753 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29758 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29759 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29762 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29763 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29768 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29769 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29772 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29773 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29778 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29779 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29782 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29783 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29792 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29793 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29796 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29797 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29802 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
29803 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29806 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29807 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29812 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29813 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29816 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29817 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29822 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
29823 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29826 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29827 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29836 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
29837 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29840 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29841 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29846 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
29847 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29850 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29851 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29856 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
29857 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29860 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29861 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29866 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
29867 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29870 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29871 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29880 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29881 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29884 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29885 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29890 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29891 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29894 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29895 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29900 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29901 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29904 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29905 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29910 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29911 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29914 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29915 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29924 using RT = UniLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29925 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29928 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29929 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29934 using RT = UniLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29935 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29938 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29939 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29944 using RT = UniLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29945 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29948 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29949 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29954 using RT = UniLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29955 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29958 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29959 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29968 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29969 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29972 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29973 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29978 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
29979 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29982 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29983 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29988 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29989 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29992 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
29993 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
29998 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
29999 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30002 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30003 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30012 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30013 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30016 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30017 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30022 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30023 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30026 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30027 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30032 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30033 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30036 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30037 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30042 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30043 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30046 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30047 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30056 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30057 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30060 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30061 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30066 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30067 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30070 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30071 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30076 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30077 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30080 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30081 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30086 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30087 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30090 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30091 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30100 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30101 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30104 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30105 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30110 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30111 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30114 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30115 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30120 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30121 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30124 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30125 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30130 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30131 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30134 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30135 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30144 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30145 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30148 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30149 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30154 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30155 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30158 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30159 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30164 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30165 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30168 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30169 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30174 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30175 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30178 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30179 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30191 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
30192 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30195 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30196 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30201 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
30202 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30205 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30206 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30211 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
30212 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30215 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30216 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30221 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
30222 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30225 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30226 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30235 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
30236 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30239 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30240 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30245 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
30246 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30249 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30250 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30255 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
30256 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30259 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30260 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30265 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
30266 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30269 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30270 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30279 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30280 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30283 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30284 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30289 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30290 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30293 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30294 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30299 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30300 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30303 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30304 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30309 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30310 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30313 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30314 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30323 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30324 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30327 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30328 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30333 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30334 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30337 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30338 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30343 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30344 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30347 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30348 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30353 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30354 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30357 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30358 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30367 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30368 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30371 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30372 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30377 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30378 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30381 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30382 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30387 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30388 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30391 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30392 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30397 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30398 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30401 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30402 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30411 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30412 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30415 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30416 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30421 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30422 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30425 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30426 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30435 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30436 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30439 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30440 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30445 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30446 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30449 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30450 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30455 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30456 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30459 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30460 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30465 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30466 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30469 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30470 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30479 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30480 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30483 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30484 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30489 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30490 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30493 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30494 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30499 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30500 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30503 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30504 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30509 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30510 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30513 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30514 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30523 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30524 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30527 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30528 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30533 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30534 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30537 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30538 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30543 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30544 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30547 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30548 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30553 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30554 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30557 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30558 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30567 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30568 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30571 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30572 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30577 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30578 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30581 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30582 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30587 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30588 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30591 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30592 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30597 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30598 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30601 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30602 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30611 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
30612 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30615 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30616 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30621 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
30622 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30625 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30626 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30631 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
30632 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30635 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30636 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30641 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
30642 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30645 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30646 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30655 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30656 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30659 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30660 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30665 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30666 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30669 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30670 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30675 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30676 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30679 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30680 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30685 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30686 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30689 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30690 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30699 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30700 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30703 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30704 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30709 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30710 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30713 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30714 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30719 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30720 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30723 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30724 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30729 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30730 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30733 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30734 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30743 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30744 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30747 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30748 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30753 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30754 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30757 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30758 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30763 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30764 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30767 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30768 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30773 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30774 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30777 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30778 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30787 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
30788 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30791 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30792 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30797 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
30798 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30801 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30802 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30807 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
30808 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30811 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30812 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30817 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
30818 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30821 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30822 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30831 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30832 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30835 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30836 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30841 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30842 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30845 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30846 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30851 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30852 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30855 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30856 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30861 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30862 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30865 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30866 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30875 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30876 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30879 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30880 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30885 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30886 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30889 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30890 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30895 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30899 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30900 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30905 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30906 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30909 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30910 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30919 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30920 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30923 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30924 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30929 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
30930 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30933 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30934 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30939 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30940 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30943 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30944 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30949 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
30950 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30953 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30954 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30963 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30964 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30967 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30968 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30973 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
30974 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30977 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30978 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30983 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30984 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30987 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30988 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
30993 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
30994 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30997 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
30998 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31007 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31008 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31011 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31012 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31017 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31018 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31021 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31022 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31027 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31028 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31031 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31032 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31037 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31038 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31041 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31042 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31051 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31052 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31055 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31056 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31061 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31062 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31065 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31066 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31071 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31072 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31075 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31076 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31081 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31082 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31085 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31086 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31095 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31096 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31099 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31100 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31105 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31106 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31109 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31110 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31115 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31116 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31119 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31120 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31125 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31126 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31129 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31130 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31142 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
31143 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31146 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31147 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31152 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
31153 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31156 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31157 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31162 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
31163 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31166 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31167 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31172 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
31173 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31176 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31177 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31186 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
31187 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31190 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31191 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31196 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
31197 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31200 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31201 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31206 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
31207 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31210 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31211 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31216 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
31217 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31220 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31221 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31230 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31231 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31234 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31235 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31240 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31241 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31244 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31245 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31250 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31251 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31254 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31255 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31260 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31261 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31264 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31265 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31274 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31275 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31278 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31279 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31284 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31285 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31288 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31289 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31294 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31295 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31298 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31299 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31304 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31305 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31308 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31309 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31318 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31319 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31322 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31323 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31328 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31329 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31332 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31333 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31338 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31339 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31342 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31343 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31348 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31349 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31352 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31353 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31362 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31363 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31366 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31367 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31372 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31373 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31376 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31377 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31386 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31387 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31390 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31391 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31396 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31397 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31400 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31401 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31406 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31407 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31410 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31411 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31416 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31417 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31420 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31421 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31430 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31431 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31434 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31435 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31440 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31441 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31444 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31445 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31450 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31451 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31454 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31455 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31460 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31461 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31464 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31465 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31474 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31475 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31478 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31479 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31484 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31485 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31488 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31489 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31494 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31495 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31498 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31499 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31504 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31505 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31508 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31509 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31518 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31519 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31522 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31523 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31528 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31529 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31532 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31533 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31538 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31539 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31542 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31543 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31548 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31549 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31552 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31553 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31562 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
31563 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31566 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31567 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31572 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
31573 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31576 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31577 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31582 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
31583 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31586 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31587 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31592 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
31593 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31596 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31597 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31606 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31607 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31610 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31611 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31616 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31617 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31620 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31621 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31626 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31627 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31630 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31631 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31636 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31637 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31640 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31641 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31650 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31651 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31654 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31655 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31660 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31661 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31664 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31665 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31670 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31671 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31674 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31675 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31680 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31681 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31684 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31685 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31694 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31695 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31698 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31699 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31704 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31705 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31708 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31709 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31714 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31715 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31718 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31719 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31724 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31725 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31728 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31729 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31738 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
31739 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31742 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31743 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31748 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
31749 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31752 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31753 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31758 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
31759 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31762 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31763 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31768 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
31769 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31772 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31773 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31782 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31783 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31786 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31787 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31792 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31793 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31796 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31797 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31802 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31803 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31806 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31807 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31812 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31813 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31816 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31817 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31826 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31827 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31830 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31831 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31836 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31837 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31840 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31841 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31846 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31847 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31850 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31851 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31856 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31857 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31860 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31861 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31870 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31871 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31874 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31875 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31880 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
31881 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31884 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31885 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31890 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31891 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31894 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31895 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31900 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
31901 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31904 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31905 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31914 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31915 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31918 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31919 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31924 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31925 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31928 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31929 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31934 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31935 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31938 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31939 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31944 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31945 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31948 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31949 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31958 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31959 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31962 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31963 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31968 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
31969 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31972 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31973 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31978 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31979 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31982 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31983 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
31988 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
31989 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31992 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
31993 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32002 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32003 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32006 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32007 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32012 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32013 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32016 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32017 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32022 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32023 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32026 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32027 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32032 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32033 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32036 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32037 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32046 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32047 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32050 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32051 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32056 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32057 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32060 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32061 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32066 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32067 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32070 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32071 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32076 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32077 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32080 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32081 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32093 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
32094 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32097 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32098 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32103 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
32104 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32107 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32108 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32113 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
32114 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32117 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32118 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32123 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
32124 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32127 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32128 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32137 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
32138 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32141 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32142 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32147 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
32148 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32151 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32152 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32157 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
32158 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32161 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32162 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32167 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
32168 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32171 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32172 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32181 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32182 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32185 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32186 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32191 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32192 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32195 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32196 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32201 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32202 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32205 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32206 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32211 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32212 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32215 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32216 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32225 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32226 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32229 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32230 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32235 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32236 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32239 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32240 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32245 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32246 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32249 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32250 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32255 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32256 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32259 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32260 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32269 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32270 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32273 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32274 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32279 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32280 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32283 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32284 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32289 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32290 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32293 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32294 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32299 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32300 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32303 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32304 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32313 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32314 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32317 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32318 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32323 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32324 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32327 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32328 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32337 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32338 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32341 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32342 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32347 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32348 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32351 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32352 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32357 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32358 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32361 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32362 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32367 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32368 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32371 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32372 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32381 using RT = UniUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32382 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32385 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32386 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32391 using RT = UniUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32392 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32395 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32396 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32401 using RT = UniUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32402 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32405 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32406 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32411 using RT = UniUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32412 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32415 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32416 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32425 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32426 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32429 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32430 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32435 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32436 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32439 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32440 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32445 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32446 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32449 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32450 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32455 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32456 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32459 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32460 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32469 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32470 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32473 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32474 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32479 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32480 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32483 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32484 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32489 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32490 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32493 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32494 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32499 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32500 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32503 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32504 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32513 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
32514 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32517 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32518 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32523 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
32524 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32527 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32528 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32533 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
32534 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32537 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32538 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32543 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
32544 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32547 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32548 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32557 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32558 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32561 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32562 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32567 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32568 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32571 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32572 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32577 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32578 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32581 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32582 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32587 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32588 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32591 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32592 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32601 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32602 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32605 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32606 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32611 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32612 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32615 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32616 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32621 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32622 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32625 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32626 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32631 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32632 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32635 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32636 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32645 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32646 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32649 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32650 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32655 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32656 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32659 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32660 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32665 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32666 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32669 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32670 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32675 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32676 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32679 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32680 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32689 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
32690 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32693 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32694 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32699 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
32700 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32703 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32704 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32709 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
32710 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32713 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32714 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32719 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
32720 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32723 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32724 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32733 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32734 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32737 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32738 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32743 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32744 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32747 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32748 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32753 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32754 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32757 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32758 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32763 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32764 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32767 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32768 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32777 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32778 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32781 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32782 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32787 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32788 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32791 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32792 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32797 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32798 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32801 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32802 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32807 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32808 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32811 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32812 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32821 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32822 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32825 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32826 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32831 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
32832 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32835 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32836 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32841 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32842 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32845 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32846 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32851 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
32852 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32855 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32856 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32865 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32866 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32869 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32870 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32875 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32876 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32879 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32880 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32885 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32886 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32889 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32890 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32895 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32896 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32899 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32900 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32909 using RT = UniUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32910 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32913 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32914 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32919 using RT = UniUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32920 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32923 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32924 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32929 using RT = UniUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32930 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32933 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32934 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32939 using RT = UniUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32940 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32943 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32944 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32953 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32954 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32957 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32958 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32963 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32964 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32967 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32968 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32973 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32974 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32977 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32978 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32983 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
32984 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32987 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
32988 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
32997 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
32998 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33001 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33002 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33007 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33008 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33011 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33012 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33017 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33018 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33021 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33022 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33027 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33028 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33031 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33032 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33044 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
33045 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33048 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33049 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33054 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
33055 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33058 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33059 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33064 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
33065 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33068 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33069 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33074 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
33075 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33078 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33079 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33088 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
33089 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33092 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33093 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33098 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
33099 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33102 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33103 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33108 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
33109 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33112 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33113 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33118 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
33119 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33122 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33123 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33132 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33133 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33136 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33137 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33142 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33143 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33146 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33147 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33152 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33153 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33156 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33157 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33162 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33163 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33166 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33167 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33176 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33177 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33180 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33181 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33186 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33187 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33190 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33191 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33196 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33197 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33200 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33201 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33206 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33207 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33210 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33211 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33220 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33221 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33224 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33225 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33230 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33231 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33234 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33235 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33240 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33241 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33244 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33245 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33250 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33251 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33254 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33255 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33264 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33265 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33268 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33269 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33274 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33275 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33278 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33279 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33288 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33289 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33292 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33293 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33298 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33299 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33302 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33303 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33308 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33309 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33312 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33313 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33318 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33319 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33322 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33323 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33332 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33333 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33336 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33337 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33342 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33343 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33346 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33347 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33352 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33353 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33356 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33357 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33362 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33363 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33366 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33367 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33376 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33377 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33380 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33381 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33386 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33387 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33390 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33391 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33396 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33397 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33400 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33401 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33406 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33407 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33410 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33411 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33420 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33421 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33424 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33425 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33430 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33431 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33434 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33435 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33440 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33441 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33444 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33445 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33450 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33451 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33454 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33455 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33464 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
33465 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33468 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33469 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33474 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
33475 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33478 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33479 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33484 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
33485 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33488 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33489 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33494 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
33495 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33498 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33499 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33508 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33509 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33512 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33513 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33518 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33519 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33522 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33523 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33528 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33529 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33532 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33533 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33538 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33539 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33542 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33543 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33552 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33553 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33556 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33557 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33562 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33563 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33566 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33567 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33572 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33573 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33576 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33577 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33582 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33583 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33586 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33587 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33596 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33597 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33600 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33601 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33606 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33607 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33610 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33611 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33616 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33617 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33620 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33621 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33626 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33627 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33630 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33631 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33640 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
33641 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33644 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33645 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33650 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
33651 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33654 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33655 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33660 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
33661 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33664 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33665 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33670 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
33671 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33674 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33675 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33684 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33685 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33688 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33689 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33694 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33695 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33698 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33699 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33704 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33705 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33708 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33709 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33714 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33715 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33718 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33719 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33728 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33729 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33732 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33733 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33738 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33739 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33742 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33743 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33748 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33749 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33752 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33753 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33758 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33759 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33762 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33763 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33772 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33773 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33776 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33777 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33782 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
33783 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33786 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33787 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33792 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33793 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33796 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33797 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33802 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
33803 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33806 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33807 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33816 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33817 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33820 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33821 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33826 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33827 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33830 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33831 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33836 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33837 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33840 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33841 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33846 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33847 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33850 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33851 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33860 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33861 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33864 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33865 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33870 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33871 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33874 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33875 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33880 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33881 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33884 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33885 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33890 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33891 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33894 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33895 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33904 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33905 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33908 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33909 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33914 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33915 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33918 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33919 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33924 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33925 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33928 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33929 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33934 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33935 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33938 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33939 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33948 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33949 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33952 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33953 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33958 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
33959 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33962 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33963 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33968 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33969 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33972 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33973 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33978 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
33979 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33982 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33983 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
33995 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
33996 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
33999 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34000 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34005 using RT = StaticMatrix<double,5UL,7UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
34006 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34009 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34010 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34015 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
34016 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34019 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34020 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34025 using RT = StaticMatrix<double,5UL,7UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
34026 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34029 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34030 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34039 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
34040 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34043 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34044 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34049 using RT = HybridMatrix<double,8UL,6UL,rowMajor>; in testMatrixMatrixMultiplication() typedef
34050 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34053 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34054 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34059 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
34060 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34063 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34064 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34069 using RT = HybridMatrix<double,8UL,6UL,columnMajor>; in testMatrixMatrixMultiplication() typedef
34070 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34073 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34074 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34083 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34084 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34087 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34088 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34093 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34094 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34097 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34098 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34103 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34104 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34107 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34108 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34113 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34114 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34117 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34118 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34127 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34128 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34131 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34132 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34137 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34138 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34141 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34142 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34147 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34148 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34151 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34152 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34157 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34158 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34161 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34162 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34171 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34172 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34175 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34176 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34181 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34182 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34185 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34186 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34191 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34192 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34195 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34196 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34201 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34202 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34205 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34206 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34215 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34216 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34219 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34220 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34225 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34226 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34229 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34230 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34239 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34240 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34243 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34244 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34249 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34250 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34253 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34254 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34259 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34260 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34263 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34264 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34269 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34270 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34273 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34274 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34283 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34284 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34287 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34288 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34293 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34294 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34297 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34298 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34303 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34304 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34307 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34308 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34313 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34314 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34317 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34318 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34327 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34328 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34331 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34332 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34337 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34338 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34341 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34342 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34347 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34348 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34351 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34352 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34357 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34358 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34361 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34362 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34371 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34372 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34375 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34376 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34381 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34382 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34385 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34386 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34391 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34392 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34395 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34396 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34401 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34402 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34405 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34406 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34415 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
34416 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34419 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34420 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34425 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
34426 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34429 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34430 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34435 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
34436 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34439 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34440 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34445 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
34446 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34449 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34450 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34459 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34460 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34463 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34464 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34469 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34470 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34473 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34474 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34479 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34480 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34483 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34484 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34489 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34490 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34493 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34494 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34503 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34504 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34507 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34508 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34513 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34514 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34517 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34518 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34523 using RT = ZeroMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34524 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34527 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34528 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34533 using RT = ZeroMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34534 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34537 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34538 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34547 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34548 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34551 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34552 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34557 using RT = DynamicMatrix<double,rowMajor>; in testMatrixMatrixMultiplication() typedef
34558 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34561 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34562 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34567 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34568 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34571 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34572 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34577 using RT = DynamicMatrix<double,columnMajor>; in testMatrixMatrixMultiplication() typedef
34578 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34581 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34582 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34591 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
34592 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34595 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34596 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34601 using RT = DynamicMatrix<complex<int>,rowMajor>; in testMatrixMatrixMultiplication() typedef
34602 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34605 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34606 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34611 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
34612 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34615 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34616 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34621 using RT = DynamicMatrix<complex<int>,columnMajor>; in testMatrixMatrixMultiplication() typedef
34622 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34625 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34626 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34635 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34636 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34639 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34640 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34645 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34646 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34649 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34650 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34655 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34656 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34659 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34660 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34665 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34666 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34669 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34670 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34679 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34680 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34683 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34684 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34689 using RT = LowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34690 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34693 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34694 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34699 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34700 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34703 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34704 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34709 using RT = LowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34710 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34713 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34714 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34723 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34724 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34727 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34728 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34733 using RT = StrictlyLowerMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34734 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34737 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34738 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34743 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34744 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34747 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34748 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34753 using RT = StrictlyLowerMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34754 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34757 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34758 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34767 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34768 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34771 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34772 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34777 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34778 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34781 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34782 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34787 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34788 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34791 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34792 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34797 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34798 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34801 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34802 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34811 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34812 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34815 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34816 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34821 using RT = UpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34822 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34825 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34826 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34831 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34832 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34835 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34836 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34841 using RT = UpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34842 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34845 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34846 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34855 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34856 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34859 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34860 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34865 using RT = StrictlyUpperMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34866 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34869 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34870 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34875 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34876 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34879 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34880 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34885 using RT = StrictlyUpperMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34886 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34889 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34890 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34899 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34900 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34903 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34904 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34909 using RT = DiagonalMatrix< DynamicMatrix<double,rowMajor> >; in testMatrixMatrixMultiplication() typedef
34910 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34913 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34914 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34919 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34920 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34923 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34924 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()
34929 using RT = DiagonalMatrix< DynamicMatrix<double,columnMajor> >; in testMatrixMatrixMultiplication() typedef
34930 static_assert( IsSame_v< MultTrait_t<T1,T2>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34933 static_assert( IsSame_v< ResultType_t<Expr>, RT >, "Non-matching type detected" ); in testMatrixMatrixMultiplication()
34934 …static_assert( StorageOrder_v<Expr> == StorageOrder_v<RT>, "Non-matching storage order detected" ); in testMatrixMatrixMultiplication()