From 6400aa50a8dc54ea66e2493da3eeb2e45c0630bb Mon Sep 17 00:00:00 2001 From: Cole Kendrick Date: Mon, 25 Mar 2024 10:03:07 -0700 Subject: [PATCH] Fix getSpatialBasis calls to remove time parameter --- examples/prom/elliptic_eigenproblem_global_rom.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/prom/elliptic_eigenproblem_global_rom.cpp b/examples/prom/elliptic_eigenproblem_global_rom.cpp index 33ebb13c8..4657a4dc0 100644 --- a/examples/prom/elliptic_eigenproblem_global_rom.cpp +++ b/examples/prom/elliptic_eigenproblem_global_rom.cpp @@ -479,11 +479,11 @@ int main(int argc, char *argv[]) const CAROM::Matrix *spatialbasis; if (rdim != -1) { - spatialbasis = reader.getSpatialBasis(0.0, rdim); + spatialbasis = reader.getSpatialBasis(rdim); } else { - spatialbasis = reader.getSpatialBasis(0.0, ef); + spatialbasis = reader.getSpatialBasis(ef); } const int numRowRB = spatialbasis->numRows();