From f9a757d69e2f714e548d06db138f9351559ae458 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Sol=C3=A0?= <jsola@iri.upc.edu> Date: Sat, 11 Apr 2020 01:39:36 +0200 Subject: [PATCH] small fix --- src/problem/problem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/problem/problem.cpp b/src/problem/problem.cpp index 5be1c32af..39b5800d4 100644 --- a/src/problem/problem.cpp +++ b/src/problem/problem.cpp @@ -398,7 +398,7 @@ inline bool Problem::getVectorComposite(VectorComposite& _state) const // compose the states of all processor motions into one only state for (const auto& prc : processor_is_motion_list_) { - for (const auto& pair_key_vec : prc->getStateComposite(ts_min)) + for (const auto& pair_key_vec : prc->getVectorComposite(ts_min)) { if (_state.count(pair_key_vec.first) == 0) _state.insert(pair_key_vec); -- GitLab