From 04844222a4ad2067dce5643ec03d604edd37e2c1 Mon Sep 17 00:00:00 2001 From: Mike Oliphant Date: Sat, 31 May 2025 08:09:59 -0700 Subject: [PATCH] Fix test --- Benchmarks/GaussianElimination.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Benchmarks/GaussianElimination.cs b/Benchmarks/GaussianElimination.cs index cef95e65..40c5cfdc 100644 --- a/Benchmarks/GaussianElimination.cs +++ b/Benchmarks/GaussianElimination.cs @@ -155,7 +155,7 @@ public void Current() { var Ab = _data[iteration].JaggedArray; - Simulation.RowReduce(Ab, M, N); + Simulation.Solve(Ab, M, N); } }