Skip to content

Commit

Permalink
Merge pull request #25 from jmh530/fixup
Browse files Browse the repository at this point in the history
Minor `posv` fixup
  • Loading branch information
jmh530 committed Dec 19, 2023
2 parents 1f5eb8c + 50a020b commit 76c3318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/mir/lapack.d
Expand Up @@ -2305,7 +2305,7 @@ template posv(T)
in {
assert(uplo == 'U' || uplo == 'L');
assert(a.length!0 == a.length!1);
assert(b.length == n);
assert(b.length == a.length!0);
}
do {
import mir.ndslice.topology: canonical;
Expand Down

0 comments on commit 76c3318

Please sign in to comment.