Skip to content

Commit

Permalink
Optimize sparse matrix product
Browse files Browse the repository at this point in the history
  • Loading branch information
alxbilger committed Feb 12, 2024
1 parent 65b7b6a commit 6274dae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ void computeProjection(
{
const auto JMap0 = makeEigenMap(*J[0]);
const auto JMap1 = makeEigenMap(*J[1]);
JT_K_J = JMap0.transpose() * KMap * JMap1;
JT_K_J = JMap0.transpose() * ( KMap * JMap1);
}
else if (J[0] && !J[1])
{
Expand Down

0 comments on commit 6274dae

Please sign in to comment.