mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-18 21:30:38 +01:00
[solver] When resolving linear system, we count on the side effect of
rank which has thus to be done in-place
This commit is contained in:
@@ -188,7 +188,7 @@ EquationStore::Error EquationStore::resolveLinearSystem(Expression exactSolution
|
||||
Ab.setDimensions(m, n+1);
|
||||
|
||||
// Compute the rank of (A | b)
|
||||
int rankAb = Ab.rank(*context, angleUnit);
|
||||
int rankAb = Ab.rank(*context, angleUnit, true);
|
||||
|
||||
// Initialize the number of solutions
|
||||
m_numberOfSolutions = INT_MAX;
|
||||
|
||||
Reference in New Issue
Block a user