Searched refs:smatrix (Results 1 - 1 of 1) sorted by relevance

/gem5/src/sim/
H A Dlinear_solver.cc46 std::vector < LinearEquation > smatrix = this->matrix; local
48 unsigned order = smatrix.size();
52 if (smatrix[i][row] != 0.0f) {
54 LinearEquation tmp = smatrix[i];
55 smatrix[i] = smatrix[row];
56 smatrix[row] = tmp;
63 smatrix[row] *= (1.0f / smatrix[row][row]);
67 LinearEquation t = smatrix[ro
[all...]

Completed in 8 milliseconds