From 1f7b9f84cf2545d2606b98079c278ca604c71e2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Thu, 7 Nov 2024 14:16:53 +0100 Subject: [PATCH] fix: Update getSolutionNames call to remove unnecessary argument --- src/Init/GridInit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Init/GridInit.cpp b/src/Init/GridInit.cpp index 1b8f24c7f..4a0e3fca3 100644 --- a/src/Init/GridInit.cpp +++ b/src/Init/GridInit.cpp @@ -182,7 +182,7 @@ PhreeqcMatrix InitialList::prepareGrid(const Rcpp::List &grid_input) { PhreeqcMatrix pqc_mat = PhreeqcMatrix(database, script); - this->transport_names = pqc_mat.getSolutionNames(true); + this->transport_names = pqc_mat.getSolutionNames(); Rcpp::Function unique_R("unique"); Rcpp::Function sort_R("sort");