Skip to content
Snippets Groups Projects
Commit cd6d414d authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Fix return value for empty vector in cpl sol.

Same as in the getPreviousLocalSolutions().
parent dfc04ef0
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,9 @@ std::vector<std::vector<double>> getCurrentLocalSolutions( ...@@ -52,6 +52,9 @@ std::vector<std::vector<double>> getCurrentLocalSolutions(
const CoupledSolutionsForStaggeredScheme& cpl_xs, const CoupledSolutionsForStaggeredScheme& cpl_xs,
const std::vector<std::vector<GlobalIndexType>>& indices) const std::vector<std::vector<GlobalIndexType>>& indices)
{ {
if (cpl_xs.coupled_xs.empty())
return {};
const auto number_of_coupled_solutions = cpl_xs.coupled_xs.size(); const auto number_of_coupled_solutions = cpl_xs.coupled_xs.size();
std::vector<std::vector<double>> local_xs_t1; std::vector<std::vector<double>> local_xs_t1;
local_xs_t1.reserve(number_of_coupled_solutions); local_xs_t1.reserve(number_of_coupled_solutions);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment