Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Apr 7, 2021
2 parents 5c5a05a + 2d83c39 commit 47a493d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/function/algebra/solver/lsolveAll.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const createLsolveAll = /* #__PURE__ */ factory(name, dependencies, ({ ty

function _denseForwardSubstitution (m, b_) {
// the algorithm is derived from
// https://www.overleaf.com/project/5e6c87c554a3190001a3fc93
// https://www.overleaf.com/read/csvgqdxggyjv

// array of right-hand sides
const B = [solveValidation(m, b_, true)._data.map(e => e[0])]
Expand Down
2 changes: 1 addition & 1 deletion src/function/algebra/solver/usolveAll.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const createUsolveAll = /* #__PURE__ */ factory(name, dependencies, ({ ty

function _denseBackwardSubstitution (m, b_) {
// the algorithm is derived from
// https://www.overleaf.com/project/5e6c87c554a3190001a3fc93
// https://www.overleaf.com/read/csvgqdxggyjv

// array of right-hand sides
const B = [solveValidation(m, b_, true)._data.map(e => e[0])]
Expand Down

0 comments on commit 47a493d

Please sign in to comment.