fix error for missing matching function

This commit is contained in:
Hannes Signer 2025-10-14 18:54:18 +02:00
parent c8d1b08e28
commit 91ae02cbf1

View File

@ -464,7 +464,7 @@ template <class T> void BTCS_LU(SimulationInput<T> &input, int numThreads) {
if (input.dim == 1) {
BTCS_1D(input, EigenLUAlgorithm);
} else {
BTCS_2D(input.dim, EigenLUAlgorithm, numThreads);
BTCS_2D(input, EigenLUAlgorithm, numThreads);
}
}