Home | History | Annotate | Download | only in test

Lines Matching refs:Scalar

22   typedef typename MatrixType::Scalar Scalar;
24 enum { is_signed = (Scalar(-1) > Scalar(0)) ? 0 : 1 };
40 Scalar s1;
42 s1 = internal::random<Scalar>();
53 typedef typename MatrixType::Scalar Scalar;
55 VERIFY(NumTraits<Scalar>::IsInteger);
56 enum { is_signed = (Scalar(-1) > Scalar(0)) ? 0 : 1 };
57 VERIFY(int(NumTraits<Scalar>::IsSigned) == is_signed);
59 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType;
71 typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, MatrixType::RowsAtCompileTime> SquareMatrixType;
112 Scalar s1;
114 s1 = internal::random<Scalar>();