Skip to content
Snippets Groups Projects
Commit f9a757d6 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

small fix

parent 9839d8a1
No related branches found
No related tags found
1 merge request!343WIP: Resolve "Complete state vector new data structure?"
...@@ -398,7 +398,7 @@ inline bool Problem::getVectorComposite(VectorComposite& _state) const ...@@ -398,7 +398,7 @@ inline bool Problem::getVectorComposite(VectorComposite& _state) const
// compose the states of all processor motions into one only state // compose the states of all processor motions into one only state
for (const auto& prc : processor_is_motion_list_) 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) if (_state.count(pair_key_vec.first) == 0)
_state.insert(pair_key_vec); _state.insert(pair_key_vec);
......
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