fix: Update getSolutionNames call to remove unnecessary argument

This commit is contained in:
Max Lübke 2024-11-07 14:16:53 +01:00
parent 45ea77ae0f
commit cdbf344329

View File

@ -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");