HomeSort by relevance Sort by last modified time
    Searched refs:eigen_assert (Results 26 - 50 of 121) sorted by null

12 3 4 5

  /external/eigen/Eigen/src/SparseCore/
TriangularSolver.h 52 eigen_assert(lastIndex==i);
78 eigen_assert(it && it.index()==i);
117 eigen_assert(it && it.index()==i);
150 eigen_assert(it && it.index()==i);
168 eigen_assert(m_matrix.cols() == m_matrix.rows() && m_matrix.cols() == other.rows());
169 eigen_assert((!(Mode & ZeroDiag)) && bool(Mode & (Upper|Lower)));
247 eigen_assert(it.index()==i);
293 eigen_assert(m_matrix.cols() == m_matrix.rows() && m_matrix.cols() == other.rows());
294 eigen_assert( (!(Mode & ZeroDiag)) && bool(Mode & (Upper|Lower)));
SparseBlock.h 70 eigen_assert( (outerStart>=0) && ((outerStart+outerSize)<=matrix.outerSize()) );
76 eigen_assert(Size!=Dynamic);
77 eigen_assert( (outer>=0) && (outer<matrix.outerSize()) );
143 eigen_assert( (outerStart>=0) && ((outerStart+outerSize)<=matrix.outerSize()) );
149 eigen_assert(Size==1);
150 eigen_assert( (outer>=0) && (outer<matrix.outerSize()) );
261 eigen_assert(nonZeros()>0);
AmbiVector.h 175 eigen_assert(m_mode==IsSparse);
190 eigen_assert(m_mode==IsSparse);
217 eigen_assert(i>=llElements[m_llCurrent].index && "you must call restart() before inserting an element with lower or equal index");
258 eigen_assert(m_mode==IsSparse);
MappedSparseMatrix.h 92 eigen_assert(end>=start && "you probably called coeffRef on a non finalized matrix");
93 eigen_assert(end>start && "coeffRef cannot be called on a zero coefficient");
96 eigen_assert((*r==inner) && (id<end) && "coeffRef cannot be called on a zero coefficient");
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 127 eigen_assert(false && "storage type not supported");
145 eigen_assert(false && "Scalar type not supported by SuperLU");
153 eigen_assert( ((MatrixType::Flags&RowMajorBit)!=RowMajorBit) && "row-major dense matrices are not supported by SuperLU");
199 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
211 eigen_assert( ((Options&RowMajor)!=RowMajor) && "row-major dense matrices is not supported by SuperLU");
258 eigen_assert(((MatrixType::Flags & SelfAdjoint)==0) && "SelfAdjoint matrix shape not supported by SuperLU");
274 eigen_assert((Flags&RowMajor)==RowMajor && sluMat.Stype == SLU_NR
328 eigen_assert(m_isInitialized && "Decomposition is not initialized.");
346 eigen_assert(m_isInitialized && "SuperLU is not initialized.");
347 eigen_assert(rows()==b.rows(
    [all...]
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 151 eigen_assert(m_isInitialized && "Pastix solver is not initialized.");
152 eigen_assert(rows()==b.rows()
164 eigen_assert(m_factorizationIsOk && "The decomposition is not in a valid state for solving, you must first call either compute() or symbolic()/numeric()");
165 eigen_assert(rows()==b.rows());
240 eigen_assert(m_isInitialized && "Decomposition is not initialized.");
252 eigen_assert(m_isInitialized && "Pastix LU, LLT or LDLT is not initialized.");
253 eigen_assert(rows()==b.rows()
272 eigen_assert(m_initisOk && "The Pastix structure should be allocated first");
338 eigen_assert(mat.rows() == mat.cols() && "The input matrix should be squared");
351 eigen_assert(m_initisOk && "The initialization of PaSTiX failed")
    [all...]
  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 70 eigen_assert(m_isInitialized && "UpperBidiagonalization is not initialized.");
76 eigen_assert(m_isInitialized && "UpperBidiagonalization is not initialized.");
94 eigen_assert(rows >= cols && "UpperBidiagonalization is only for matrices satisfying rows>=cols.");
JacobiSVD.h 590 eigen_assert(m_isInitialized && "JacobiSVD is not initialized.");
591 eigen_assert(computeU() && "This JacobiSVD decomposition didn't compute U. Did you ask for it?");
606 eigen_assert(m_isInitialized && "JacobiSVD is not initialized.");
607 eigen_assert(computeV() && "This JacobiSVD decomposition didn't compute V. Did you ask for it?");
618 eigen_assert(m_isInitialized && "JacobiSVD is not initialized.");
640 eigen_assert(m_isInitialized && "JacobiSVD is not initialized.");
641 eigen_assert(computeU() && computeV() && "JacobiSVD::solve() requires both unitaries U and V to be computed (thin unitaries suffice).");
648 eigen_assert(m_isInitialized && "JacobiSVD is not initialized.");
681 eigen_assert(rows >= 0 && cols >= 0);
700 eigen_assert(!(m_computeFullU && m_computeThinU) && "JacobiSVD: you can't ask for both full and thin U")
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 340 eigen_assert(p(j) == i);
437 eigen_assert(A.rows() == A.cols());
438 eigen_assert(A.isUpperTriangular());
439 eigen_assert(B.rows() == B.cols());
440 eigen_assert(B.isUpperTriangular());
441 eigen_assert(C.rows() == A.rows());
442 eigen_assert(C.cols() == B.rows());
552 eigen_assert(rows() == cols());
559 eigen_assert(rows() == cols());
567 eigen_assert(rows() == cols())
    [all...]
  /external/eigen/Eigen/src/Core/
Block.h 120 eigen_assert( (i>=0) && (
132 eigen_assert(startRow >= 0 && BlockRows >= 1 && startRow + BlockRows <= xpr.rows()
144 eigen_assert((RowsAtCompileTime==Dynamic || RowsAtCompileTime==blockRows)
146 eigen_assert(startRow >= 0 && blockRows >= 0 && startRow + blockRows <= xpr.rows()
278 eigen_assert( (i>=0) && (
289 eigen_assert(startRow >= 0 && BlockRows >= 1 && startRow + BlockRows <= xpr.rows()
302 eigen_assert((RowsAtCompileTime==Dynamic || RowsAtCompileTime==blockRows)
304 eigen_assert(startRow >= 0 && blockRows >= 0 && startRow + blockRows <= xpr.rows()
MapBase.h 138 eigen_assert(size >= 0);
139 eigen_assert(data == 0 || SizeAtCompileTime == Dynamic || SizeAtCompileTime == size);
146 eigen_assert( (data == 0)
159 eigen_assert(EIGEN_IMPLIES(internal::traits<Derived>::Flags&AlignedBit, (size_t(m_data) % 16) == 0)
DenseCoeffsBase.h 113 eigen_assert(row >= 0 && row < rows()
156 eigen_assert(index >= 0 && index < size());
173 eigen_assert(index >= 0 && index < size());
336 eigen_assert(row >= 0 && row < rows()
378 eigen_assert(index >= 0 && index < size());
394 eigen_assert(index >= 0 && index < size());
Select.h 68 eigen_assert(m_condition.rows() == m_then.rows() && m_condition.rows() == m_else.rows());
69 eigen_assert(m_condition.cols() == m_then.cols() && m_condition.cols() == m_else.cols());
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedSelfAdjointEigenSolver.h 166 eigen_assert(matA.cols()==matA.rows() && matB.rows()==matA.rows() && matB.cols()==matB.rows());
167 eigen_assert((options&~(EigVecMask|GenEigMask))==0
ComplexSchur.h 137 eigen_assert(m_isInitialized && "ComplexSchur is not initialized.");
138 eigen_assert(m_matUisUptodate && "The matrix U has not been computed during the ComplexSchur decomposition.");
161 eigen_assert(m_isInitialized && "ComplexSchur is not initialized.");
192 eigen_assert(m_isInitialized && "RealSchur is not initialized.");
274 eigen_assert(matrix.cols() == matrix.rows());
EigenSolver.h 200 eigen_assert(m_isInitialized && "EigenSolver is not initialized.");
201 eigen_assert(m_eigenvectorsOk && "The eigenvectors have not been computed together with the eigenvalues.");
245 eigen_assert(m_isInitialized && "EigenSolver is not initialized.");
280 eigen_assert(m_isInitialized && "EigenSolver is not initialized.");
302 eigen_assert(m_isInitialized && "EigenSolver is not initialized.");
322 eigen_assert(m_isInitialized && "EigenSolver is not initialized.");
323 eigen_assert(m_eigenvectorsOk && "The eigenvectors have not been computed together with the eigenvalues.");
565 eigen_assert(0 && "Internal bug in EigenSolver"); // this should not happen
  /external/eigen/Eigen/src/IterativeLinearSolvers/
BasicPreconditioners.h 92 eigen_assert(m_isInitialized && "DiagonalPreconditioner is not initialized.");
93 eigen_assert(m_invdiag.size()==b.rows()
IncompleteLUT.h 66 eigen_assert(fillfactor != 0);
81 eigen_assert(m_isInitialized && "IncompleteLUT is not initialized.");
101 eigen_assert(m_factorizationIsOk == true);
121 eigen_assert(m_isInitialized && "IncompleteLUT is not initialized.");
122 eigen_assert(cols()==b.rows()
246 eigen_assert((amat.rows() == amat.cols()) && "The factorization should be done on a square matrix");
255 eigen_assert(m_analysisIsOk && "You must first call analyzePattern()");
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteLU.h 83 eigen_assert(m_isInitialized && "IncompleteLU is not initialized.");
84 eigen_assert(cols()==b.rows()
  /external/eigen/Eigen/src/LU/
PartialPivLU_MKL.h 68 eigen_assert(info >= 0); \
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 163 eigen_assert(m_isInitialized && "Decomposition is not initialized.");
208 eigen_assert(m_isInitialized && "UmfPackLU is not initialized.");
209 eigen_assert(rows()==b.rows()
221 // eigen_assert(m_isInitialized && "UmfPAckLU is not initialized.");
222 // eigen_assert(rows()==b.rows()
260 eigen_assert(m_analysisIsOk && "UmfPackLU: you must first call analyzePattern()");
382 eigen_assert((BDerived::Flags&RowMajorBit)==0 && "UmfPackLU backend does not support non col-major rhs yet");
383 eigen_assert((XDerived::Flags&RowMajorBit)==0 && "UmfPackLU backend does not support non col-major result yet");
  /external/eigen/Eigen/src/Core/util/
StaticAssert.h 21 * eigen_assert(CONDITION && "MSG")
119 #define EIGEN_STATIC_ASSERT(CONDITION,MSG) eigen_assert((CONDITION) && #MSG);
172 eigen_assert(!NumTraits<Scalar>::IsInteger);
  /external/eigen/Eigen/src/Cholesky/
LLT_MKL.h 54 eigen_assert(m.rows()==m.cols()); \
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 50 eigen_assert(v!=0);
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineInplaceLU.h 124 eigen_assert(rows == cols && "We do not (yet) support rectangular LU.");
125 eigen_assert(!m_lu.IsRowMajor && "LU decomposition does not work with rowMajor Storage");
188 eigen_assert(rows == cols && "We do not (yet) support rectangular LU.");
189 eigen_assert(m_lu.IsRowMajor && "You're trying to apply rowMajor decomposition on a ColMajor matrix !");

Completed in 558 milliseconds

12 3 4 5