mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-08 22:21:49 +08:00
add an "InvalidInput" enum, used by the SuperLU interface
This commit is contained in:
parent
a8f66fec65
commit
0d02182ae8
@ -379,7 +379,10 @@ enum ComputationInfo {
|
|||||||
/** The provided data did not satisfy the prerequisites. */
|
/** The provided data did not satisfy the prerequisites. */
|
||||||
NumericalIssue = 1,
|
NumericalIssue = 1,
|
||||||
/** Iterative procedure did not converge. */
|
/** Iterative procedure did not converge. */
|
||||||
NoConvergence = 2
|
NoConvergence = 2,
|
||||||
|
/** The inputs are invalid, or the algorithm has been properly called.
|
||||||
|
* When assertions are enabled, such errors trigger an assert. */
|
||||||
|
InvalidInput = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
/** \ingroup enums
|
/** \ingroup enums
|
||||||
|
Loading…
x
Reference in New Issue
Block a user