diff --git a/MathLib/LinAlg/Dense/DenseTools.cpp b/MathLib/LinAlg/Dense/DenseTools.cpp index df52b082915c283c3c2b87808c2e6636e9ea5ade..1a64e6a6169b44732e5741de6f34882bf2c693ba 100644 --- a/MathLib/LinAlg/Dense/DenseTools.cpp +++ b/MathLib/LinAlg/Dense/DenseTools.cpp @@ -20,39 +20,40 @@ namespace MathLib void applyKnownSolution(DenseMatrix<double> &eqsA, DenseVector<double> &eqsRHS, std::size_t k, double val) { - const std::size_t n_rows = eqsA.getNRows(); - const std::size_t n_cols = eqsA.getNCols(); - - // set all entries of the k-th row of the matrix to zero - // except the diagonal entry that is set to one - for (std::size_t j=0; j<n_cols; j++) - eqsA(k, j) = .0; - eqsA(k,k) = 1.0; - - // b_i -= A(i,k)*val, i!=k and - // set the entries of the k-th column of the matrix to zero - // except the diagonal entry A(k,k) + const std::size_t n_rows = eqsA.getNRows(); + const std::size_t n_cols = eqsA.getNCols(); + + // set all entries of the k-th row of the matrix to zero + // except the diagonal entry that is set to one + for (std::size_t j = 0; j < n_cols; j++) + eqsA(k, j) = .0; + eqsA(k, k) = 1.0; + + // b_i -= A(i,k)*val, i!=k and + // set the entries of the k-th column of the matrix to zero + // except the diagonal entry A(k,k) for (std::size_t i = 0; i < k; ++i) { eqsRHS[i] -= eqsA(i, k) * val; eqsA(i, k) = 0.0; } - for (std::size_t i = k+1; i < n_rows; ++i) + for (std::size_t i = k + 1; i < n_rows; ++i) { eqsRHS[i] -= eqsA(i, k) * val; eqsA(i, k) = 0.0; } - // b_k = val - eqsRHS[k] = val; + // b_k = val + eqsRHS[k] = val; } void applyKnownSolution(DenseMatrix<double> &A, DenseVector<double> &b, const std::vector<std::size_t> &vec_knownX_id, const std::vector<double> &vec_knownX_x) { - const std::size_t n_bc = vec_knownX_id.size(); - for (std::size_t i_bc=0; i_bc<n_bc; i_bc++) { - applyKnownSolution(A, b, vec_knownX_id[i_bc], vec_knownX_x[i_bc]); - } + const std::size_t n_bc = vec_knownX_id.size(); + for (std::size_t i_bc = 0; i_bc < n_bc; i_bc++) + { + applyKnownSolution(A, b, vec_knownX_id[i_bc], vec_knownX_x[i_bc]); + } }