Skip to content

Commit

Permalink
fixed a link in the comments of usolveAll and lsolveAll (#2154)
Browse files Browse the repository at this point in the history
* fixed a link in the comments of usolveAll

The overleaf link in `usolveAll` didn't work.

* fixed link in lsolveAll
  • Loading branch information
cshaa authored Apr 7, 2021
1 parent 06052ec commit 2d83c39
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 2d83c39

Please sign in to comment.