Skip to content

Commit

Permalink
minor fix in BasisReader.
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamer2368 committed Feb 17, 2024
1 parent 569a6bd commit ddc1125
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/linalg/BasisReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ BasisReader::getSpatialBasis(
double time,
int n)
{
return getSpatialBasis(1, n);
return getSpatialBasis(time, 1, n);
}

Matrix*
Expand Down Expand Up @@ -165,7 +165,7 @@ BasisReader::getTemporalBasis(
double time,
int n)
{
return getTemporalBasis(1, n);
return getTemporalBasis(time, 1, n);
}

Matrix*
Expand Down Expand Up @@ -350,7 +350,7 @@ BasisReader::getSnapshotMatrix(
double time,
int n)
{
return getSnapshotMatrix(1, n);
return getSnapshotMatrix(time, 1, n);
}

Matrix*
Expand Down

0 comments on commit ddc1125

Please sign in to comment.