From 91ae02cbf1d8304e9b2377fc1298c5a6ce51c73f Mon Sep 17 00:00:00 2001 From: Hannes Signer Date: Tue, 14 Oct 2025 18:54:18 +0200 Subject: [PATCH] fix error for missing matching function --- include/tug/Core/Numeric/BTCS.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tug/Core/Numeric/BTCS.hpp b/include/tug/Core/Numeric/BTCS.hpp index 3a875ec..0d2375a 100644 --- a/include/tug/Core/Numeric/BTCS.hpp +++ b/include/tug/Core/Numeric/BTCS.hpp @@ -464,7 +464,7 @@ template void BTCS_LU(SimulationInput &input, int numThreads) { if (input.dim == 1) { BTCS_1D(input, EigenLUAlgorithm); } else { - BTCS_2D(input.dim, EigenLUAlgorithm, numThreads); + BTCS_2D(input, EigenLUAlgorithm, numThreads); } }