MPPool.cpp
Go to the documentation of this file.
1 #include "MPPool.h"
2 
3 #include <SimoxUtility/json.h>
4 #include <VirtualRobot/Nodes/RobotNode.h>
5 
8 
10 #include <armarx/control/common/mp/aron/MPConfig.aron.generated.h>
11 
12 #include "../utils.h"
13 #include "JSMP.h"
14 #include "KeypointsMP.h"
15 #include "TSMP.h"
16 
18 {
19 
20  void
21  MPPool::createMPs(const MPListConfig& mpListConfig)
22  {
23  auto _start = IceUtil::Time::now().toSecondsDouble();
24  ARMARX_INFO << "----------------------------------- creating MPs "
25  "-------------------------------------------------";
26  ARMARX_INFO << " -- in MPPool, we have " << mpListConfig.mpList.size() << " MPs";
27 
28  int index = 0;
29  for (const MPConfig& c : mpListConfig.mpList)
30  {
31  auto className = mpClass::_from_string_nocase(c.className.c_str());
32  ARMARX_INFO << "-- (" << index << ") creating MP with name " << c.name
33  << "\n---- class: " << c.className << "\n---- type: " << c.mpTypeString
34  << "\n---- mode: " << c.mpMode << "\n---- style: " << c.mpStyle;
35  index++;
36  switch (className)
37  {
38  case mpClass::JSMP:
39  {
40  JSMPPtr jsmp(new JSMP(c));
41  JSMPInputPtr in(new JSMPInput());
42  JSMPOutputPtr out(new JSMPOutput());
43  mps.insert({c.name, {jsmp, in, out}});
44  break;
45  }
46  case mpClass::JSVelMP:
47  break;
48  case mpClass::TSMP:
49  {
50  TSMPPtr tsmp(new TSMP(c));
51  TSMPInputPtr in(new TSMPInput());
52  TSMPOutputPtr out(new TSMPOutput());
53  mps.insert({c.name, {tsmp, in, out}});
54  break;
55  }
56  case mpClass::KeypointsMP:
57  {
58  KeypointsMPPtr tsmp(new KeypointsMP(c));
61  mps.insert({c.name, {tsmp, in, out}});
62  break;
63  }
64  case mpClass::TSVelMP:
65  break;
66  default:
67  ARMARX_WARNING << "unsupported MP class: " << c.className
68  << "\nsupported names include: "
69  "JSMP, JSVelMP, TSMP, TSVelMP, KeypointsMP";
70  break;
71  }
72  }
73  auto _duration = IceUtil::Time::now().toSecondsDouble() - _start;
74  ARMARX_INFO << "---------------------------------- All MPs created in " << _duration
75  << " sec "
76  "-----------------------------------------------";
77  }
78 
79  void
80  MPPool::reconfigureMPs(const MPListConfig& mpListConfig)
81  {
82  mps.clear();
83  createMPs(mpListConfig);
84  }
85 
86  void
87  MPPool::runMPs(const bool rtSafe)
88  {
89  for (auto& mp : mps)
90  {
91  if (rtSafe or mp.second.mp->isFirstRun())
92  {
93  mp.second.mp->run(mp.second.input, mp.second.output);
94  }
95  }
96  }
97 
98  std::string
99  MPPool::getNames(const Ice::Current& iceCurrent)
100  {
101  std::string allMPs = "";
102  for (auto& mp : mps)
103  {
104  allMPs = allMPs + mp.second.mp->getMPName() + ", ";
105  }
106  return allMPs;
107  }
108 
109  void
112  const ::armarx::StringDoubleMap& durationSec,
113  const ::Ice::Current&)
114  {
115  for (auto& pair : mps)
116  {
117  auto it = durationSec.find(pair.first);
118  auto is = startVec.find(pair.first);
119  auto ig = goalVec.find(pair.first);
120 
121  if (it != durationSec.end())
122  {
123  if (it->second > 0.0)
124  {
125  pair.second.mp->setDurationSec(it->second);
126  }
127  }
128  if (is != startVec.end())
129  {
130  pair.second.mp->setStart(is->second);
131  }
132  if (ig != goalVec.end())
133  {
134  pair.second.mp->setGoal(ig->second);
135  }
136  }
137  }
138 
139  void
140  MPPool::startAll(const Ice::Current& iceCurrent)
141  {
142  start();
143  }
144 
145  void
146  MPPool::start(const std::string& mpName,
147  const DVec& startVec,
148  const DVec& goalVec,
149  Ice::Double timeDuration,
150  const Ice::Current& iceCurrent)
151  {
152  auto start = IceUtil::Time::now().toSecondsDouble();
153  if (mpName == "all")
154  {
155  ARMARX_INFO << "--------------------------------------- start all MPs "
156  "---------------------------------------";
157  ARMARX_INFO << " -- To start all MPs at once, it's up to the user to configure the "
158  "start, goal and timeduration properly before this call.";
159  int index = 0;
160  for (auto& mp : mps)
161  {
162  ARMARX_INFO << " -- (" << index << ")-th MP: ";
163  mp.second.mp->start();
164  index++;
165  }
166  ARMARX_INFO << " -- all MPs started.";
167  }
168  else
169  {
170  auto search = mps.find(mpName);
171  if (search != mps.end())
172  {
173  if (timeDuration < 0.0)
174  {
175  search->second.mp->start(goalVec, startVec);
176  }
177  else
178  {
179  search->second.mp->start(goalVec, startVec, timeDuration);
180  }
181  }
182  else
183  {
184  ARMARX_ERROR << mpName
185  << " is not in the MP pool. Please check your configuration file";
186  }
187  }
188  // ARMARX_IMPORTANT << "starting mp" << VAROUT(mpName) << "with start: " << dVecToString(startVec) << " and goal: " << dVecToString(goalVec) << " for " << timeDuration << " seconds";
189  auto duration = IceUtil::Time::now().toSecondsDouble() - start;
190  ARMARX_INFO << "All mp started in " << duration << " sec.";
191  }
192 
193  void
194  MPPool::stopAll(const Ice::Current& iceCurrent)
195  {
196  stop();
197  }
198 
199  void
200  MPPool::stop(const std::string& mpName, const Ice::Current&)
201  {
202  if (mpName == "all")
203  {
204  for (auto& mp : mps)
205  {
206  mp.second.mp->stop();
207  }
208  }
209  else
210  {
211  auto search = mps.find(mpName);
212  if (search != mps.end())
213  {
214  search->second.mp->stop();
215  }
216  else
217  {
218  ARMARX_ERROR << mpName
219  << " is not in the MP pool. Please check your configuration file";
220  }
221  }
222  }
223 
224  void
225  MPPool::pauseAll(const Ice::Current& iceCurrent)
226  {
227  pause();
228  }
229 
230  void
231  MPPool::pause(const std::string& mpName, const Ice::Current&)
232  {
233  if (mpName == "all")
234  {
235  for (auto& mp : mps)
236  {
237  mp.second.mp->pause();
238  }
239  }
240  else
241  {
242  auto search = mps.find(mpName);
243  if (search != mps.end())
244  {
245  search->second.mp->pause();
246  }
247  else
248  {
249  ARMARX_ERROR << mpName
250  << " is not in the MP pool. Please check your configuration file";
251  }
252  }
253  }
254 
255  void
256  MPPool::resumeAll(const Ice::Current& iceCurrent)
257  {
258  resume();
259  }
260 
261  void
262  MPPool::resume(const std::string& mpName, const Ice::Current&)
263  {
264  if (mpName == "all")
265  {
266  for (auto& mp : mps)
267  {
268  mp.second.mp->resume();
269  }
270  }
271  else
272  {
273  auto search = mps.find(mpName);
274  if (search != mps.end())
275  {
276  search->second.mp->resume();
277  }
278  else
279  {
280  ARMARX_ERROR << mpName
281  << " is not in the MP pool. Please check your configuration file";
282  }
283  }
284  }
285 
286  void
287  MPPool::resetAll(const Ice::Current& iceCurrent)
288  {
289  reset();
290  }
291 
292  void
293  MPPool::reset(const std::string& mpName, const Ice::Current&)
294  {
295  if (mpName == "all")
296  {
297  for (auto& mp : mps)
298  {
299  mp.second.mp->reset();
300  }
301  }
302  else
303  {
304  auto search = mps.find(mpName);
305  if (search != mps.end())
306  {
307  search->second.mp->reset();
308  }
309  else
310  {
311  ARMARX_ERROR << mpName
312  << " is not in the MP pool. Please check your configuration file";
313  }
314  }
315  }
316 
317  bool
318  MPPool::isFinishedAll(const Ice::Current& iceCurrent)
319  {
320  return isFinished();
321  }
322 
323  bool
324  MPPool::isFinished(const std::string& mpName, const Ice::Current&)
325  {
326  if (mpName == "all")
327  {
328  return std::all_of(mps.begin(),
329  mps.end(),
330  [](const auto& pair) { return pair.second.mp->isFinished(); });
331  }
332 
333  auto it = mps.find(mpName);
334  if (it != mps.end())
335  {
336  return it->second.mp->isFinished();
337  }
338 
339  ARMARX_ERROR << mpName << " is not in the MP pool. Please check your configuration file";
340  return true;
341  }
342 
343  void
344  MPPool::learnFromCSV(const Ice::StringSeq& fileNames, const Ice::Current& iceCurrent)
345  {
346  if (fileNames.size() > 0)
347  {
348  ARMARX_WARNING << "Be aware that the fileNames ice parameter is not yet used. "
349  << "Instead, set the file names in the MPConfig parameter of your "
350  << "previous ice interface call.";
351  }
352  ARMARX_INFO << "--------------------------------------- Train MPs "
353  "----------------------------------------------------";
354  for (auto& mp : mps)
355  {
356  mp.second.mp->learnFromCSV();
357  }
358  isMPReady.store(true);
359  ARMARX_INFO << "--------------------------------------- done "
360  "----------------------------------------------------";
361  }
362 
363  void
365  const Ice::Current& iceCurrent)
366  {
367  auto start = IceUtil::Time::now().toSecondsDouble();
368  ARMARX_INFO << "--------------------------------------- Train MPs "
369  "----------------------------------------------------";
370 
371  // Convert parameter of ice interface call to business object
372  MultiMPTrajs trajsDict;
373  trajsDict.fromAron(dict);
374  // std::map<std::string, std::vector<arondto::MPTraj>> dto =
375  // arondto::MultiMPTrajs::FromAron(dict).data;
376  // // armarx::aron::fromAron<std::vector<arondto::MPTraj>, MPTrajs>(arondto::MultiMPTrajs::FromAron(dict), bo);
377  // armarx::aron::fromAron<std::string, std::vector<arondto::MPTraj>, std::string, MPTrajs>(
378  // dto, trajsDict);
379 
380  // MultiMPTrajs trajsDict = ::armarx::fromAronDict<arondto::MultiMPTrajs, MultiMPTrajs>(dict);
381 
382  if (trajsDict.data.empty())
383  {
384  ARMARX_INFO << "Learning from trajectories specified in MPConfig(s) rather than as an "
385  "ice parameter";
386  for (const auto& [mpName, mpInputOutput] : mps)
387  {
388  const auto& mpConfig = mpInputOutput.mp->getConfig();
389  ARMARX_CHECK(not mpConfig.trajectoryList.empty())
390  << "For MP " << mpName << ": No trajectories provided as parameter, "
391  << "and not trajectories specified in MPConfig.";
392  mpInputOutput.mp->learnFromTraj(mpConfig.trajectoryList);
393  }
394  }
395  else
396  {
397  for (const auto& [mpName, trajs] : trajsDict.data)
398  {
399  // Learn the MP identified by mpName from the trajectory list stored in
400  // trajsDict.at(mpName)
401  ARMARX_CHECK(mps.count(mpName))
402  << "Trajectories provided for unknown MP " << mpName;
403  ARMARX_CHECK(not trajs.empty())
404  << "Empty list of trajectories provided for MP " << mpName;
405  mps.at(mpName).mp->learnFromTraj(trajs);
406  }
407  }
408  // mark whole MP pool as ready
409  isMPReady.store(true);
410 
411  auto duration = IceUtil::Time::now().toSecondsDouble() - start;
412  ARMARX_INFO << "--------------------------------------- done in " << duration
413  << " sec "
414  "----------------------------------------------------";
415  }
416 
417  void
418  MPPool::trainMP(const Ice::Current& iceCurrent)
419  {
420  auto start = IceUtil::Time::now().toSecondsDouble();
421  for (auto& mp : mps)
422  {
423  mp.second.mp->trainMP();
424  }
425  isMPReady.store(true);
426  auto duration = IceUtil::Time::now().toSecondsDouble() - start;
427  ARMARX_INFO << "training finished in " << duration << " sec.";
428  }
429 
430  void
431  MPPool::setGoal(const DVec& goals, const Ice::Current& iceCurrent)
432  {
433  }
434 
435  void
436  MPPool::setStartAndGoal(const DVec& starts, const DVec& goals, const Ice::Current& iceCurrent)
437  {
438  for (auto& mp : mps)
439  {
440  mp.second.mp->setStartAndGoal(starts, goals);
441  }
442  }
443 
444  void
445  MPPool::setViaPoint(Ice::Double u, const DVec& viapoint, const Ice::Current& iceCurrent)
446  {
447  }
448 
449  void
450  MPPool::removeAllViaPoint(const Ice::Current& iceCurrent)
451  {
452  }
453 
454  //void MPPool::setWeight(const DVecSeq& weights, const Ice::Current &iceCurrent)
455  //{
456 
457  //}
458 
459  std::string
460  MPPool::serialize(const Ice::Current& iceCurrent)
461  {
462  return "";
463  }
464 
465  DVec
466  MPPool::deserialize(const std::string&, const Ice::Current& iceCurrent)
467  {
468  std::vector<double> test{0.1, 0.1};
469  return test;
470  }
471 
473  MPPool::getCanVal(const std::string& mpName, const Ice::Current& iceCurrent)
474  {
475  auto search = mps.find(mpName);
476  if (search != mps.end())
477  {
478  return search->second.mp->getCanonicalValue();
479  }
480  else
481  {
482  ARMARX_ERROR << mpName
483  << " is not in the MP pool. Please check your configuration file";
484  return true;
485  }
486  }
487 
488  bool
489  MPPool::getMPEnabled(const Ice::Current&)
490  {
491  return true;
492  }
493 
494  void
496  const Ice::Current& iceCurrent)
497  {
498  ARMARX_WARNING << "You should overwrite this method in your concrete MP controllers, and "
499  "call resetMPs(dto, rnsMap)";
500  }
501 
502  bool
504  const std::map<std::string, VirtualRobot::RobotNodeSetPtr>& rnsMap)
505  {
506  std::scoped_lock lock(mtx_mps);
507  if (not isFinishedAll())
508  {
509  ARMARX_WARNING << "MP is not finished yet, cannot reset MP\n"
510  "If you want to force reset, please call \n\n"
511  " ctrl->stop('all') \n\n"
512  "before you continue";
513  return false;
514  }
515 
516  auto configData = MPListConfig::FromAron(dto);
517  isMPReady.store(false);
518  while (mpTaskRunning.load())
519  {
520  usleep(1000);
521  }
522 
523  for (const auto& _mp : configData.mpList)
524  {
525  if (rnsMap.find(_mp.nodeSetName) == rnsMap.end())
526  {
527  ARMARX_WARNING << "You have to make sure the RobotNodeSet " << _mp.nodeSetName
528  << " in your MP config "
529  << "corresponds to one of the RobotNodeSet in the controllers";
530  return false;
531  }
532  }
533  mpConfig = configData;
535 
536  reInitMPInputOutputData(rnsMap);
537  ARMARX_INFO << "-- successfully updated MP config.";
538  return true;
539  }
540 
542  MPPool::getMPConfig(const Ice::Current& iceCurrent)
543  {
544  return mpConfig.toAronDTO();
545  }
546 
547  void
549  const std::map<std::string, VirtualRobot::RobotNodeSetPtr>& rnsMap)
550  {
551  ARMARX_INFO << "-- reconfigure MP: reinitialize the mp input output, as well as the rt "
552  "related buffer values";
553  int index = 0;
554  for (auto& _mp : mps)
555  {
556  // const auto& nodeSetName = ;
557  // ARMARX_CHECK_EQUAL(nodeSetName, limb.at(nodeSetName)->kinematicChainName);
558  VirtualRobot::RobotNodeSetPtr rns = rnsMap.at(_mp.second.mp->getNodeSetName());
559 
560  if (_mp.second.mp->getRole() == "taskspace")
561  {
562  Eigen::Matrix4f currentPose = rns->getTCP()->getPoseInRootFrame();
563  ARMARX_INFO << "---- (" << index << ") init input output data for "
564  << _mp.second.mp->getMPName();
565  std::dynamic_pointer_cast<mp::TSMPInput>(_mp.second.input)->pose = currentPose;
566  std::dynamic_pointer_cast<mp::TSMPInput>(_mp.second.input)->vel.setZero();
567  std::dynamic_pointer_cast<mp::TSMPOutput>(_mp.second.output)->pose = currentPose;
568  std::dynamic_pointer_cast<mp::TSMPOutput>(_mp.second.output)->vel.setZero();
569  }
570  else if (_mp.second.mp->getRole() == "nullspace")
571  {
572  ARMARX_INFO << "---- (" << index << ") init input output data for "
573  << _mp.second.mp->getMPName() << " with "
574  << rns->getJointValues().size() << " joints";
575  std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angleRadian =
576  rns->getJointValuesEigen();
577  std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angularVel =
578  Eigen::VectorXf::Zero(rns->getJointValues().size());
579  std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angleRadian =
580  rns->getJointValuesEigen();
581  std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angularVel =
582  Eigen::VectorXf::Zero(rns->getJointValues().size());
583  }
584  else if (_mp.second.mp->getRole() == "hand")
585  {
586  ARMARX_INFO << "---- (" << index << ") init input output data for "
587  << _mp.second.mp->getMPName() << " with "
588  << rns->getJointValues().size() << " joints";
589  std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angleRadian =
590  rns->getJointValuesEigen();
591  std::dynamic_pointer_cast<mp::JSMPInput>(_mp.second.input)->angularVel =
592  Eigen::VectorXf::Zero(rns->getJointValues().size());
593  std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angleRadian =
594  rns->getJointValuesEigen();
595  std::dynamic_pointer_cast<mp::JSMPOutput>(_mp.second.output)->angularVel =
596  Eigen::VectorXf::Zero(rns->getJointValues().size());
597  }
598  index++;
599  }
600  }
601 
602 } // namespace armarx::control::common::mp
armarx::control::common::mp::MPPool::getCanVal
Ice::Double getCanVal(const std::string &mpName, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:473
armarx::MPPoolInterface::getNames
string getNames()
armarx::MPPoolInterface::getMPEnabled
bool getMPEnabled()
armarx::control::common::mp::MPPool::isMPReady
std::atomic< bool > isMPReady
Definition: MPPool.h:129
armarx::control::common::mp::MPPool::reconfigureMPs
void reconfigureMPs(const MPListConfig &mpListConfig)
Definition: MPPool.cpp:80
armarx::MPPoolInterface::isFinishedAll
bool isFinishedAll()
TSMP.h
armarx::control::common::mp::MPPool::setGoal
void setGoal(const DVec &goals, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:431
index
uint8_t index
Definition: EtherCATFrame.h:59
armarx::control::common::mp::JSMPInputPtr
std::shared_ptr< JSMPInput > JSMPInputPtr
Definition: JSMP.h:47
armarx::control::common::mp::MPPool::stop
void stop(const std::string &mpName="all", const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:200
armarx::control::common::mp::TSMPPtr
std::shared_ptr< TSMP > TSMPPtr
Definition: TSMP.h:62
GfxTL::Matrix4f
MatrixXX< 4, 4, float > Matrix4f
Definition: MatrixXX.h:650
JSMP.h
armarx::control::common::mp::MPPool::reset
void reset(const std::string &mpName="all", const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:293
armarx::control::common::mp::MPPool::mpTaskRunning
std::atomic_bool mpTaskRunning
Definition: MPPool.h:138
armarx::MPPoolInterface::stopAll
void stopAll()
armarx::control::common::mp::MPPool::learnFromTrajs
void learnFromTrajs(const ::armarx::aron::data::dto::DictPtr &dto, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:364
armarx::control::common::mp::TSMP
Definition: TSMP.h:49
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
aron_conversions.h
armarx::control::common::mp
This file is part of ArmarX.
Definition: aron_conversions.cpp:331
armarx::control::common::mp::MPPool::runMPs
void runMPs(const bool rtSafe)
Definition: MPPool.cpp:87
armarx::control::common::mp::JSMPOutput
Definition: JSMP.h:41
armarx::control::common::mp::JSMPOutputPtr
std::shared_ptr< JSMPOutput > JSMPOutputPtr
Definition: JSMP.h:48
ARMARX_CHECK
#define ARMARX_CHECK(expression)
Shortcut for ARMARX_CHECK_EXPRESSION.
Definition: ExpressionException.h:82
armarx::MPPoolInterface::resumeAll
void resumeAll()
armarx::MPPoolInterface::getMPConfig
armarx::aron::data::dto::Dict getMPConfig()
IceInternal::Handle
Definition: forward_declarations.h:8
armarx::control::common::mp::MPPool::resetMPs
bool resetMPs(const ::armarx::aron::data::dto::DictPtr &dto, const std::map< std::string, VirtualRobot::RobotNodeSetPtr > &rnsMap)
Definition: MPPool.cpp:503
armarx::control::common::mp::MPPool::setViaPoint
void setViaPoint(Ice::Double u, const DVec &viapoint, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:445
armarx::control::common::mp::MPPool::createMPs
void createMPs(const MPListConfig &mpListConfig)
Definition: MPPool.cpp:21
armarx::VariantType::Double
const VariantTypeId Double
Definition: Variant.h:920
armarx::control::common::mp::KeypointsMPOutput
Definition: KeypointsMP.h:39
armarx::MPPoolInterface::resetAll
void resetAll()
armarx::control::common::mp::TSMPOutputPtr
std::shared_ptr< TSMPOutput > TSMPOutputPtr
Definition: TSMP.h:47
armarx::control::common::mp::MPPool::resume
void resume(const std::string &mpName="all", const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:262
armarx::control::common::mp::MPPool::set
void set(const ::armarx::StringDoubleSeqMap &, const ::armarx::StringDoubleSeqMap &, const ::armarx::StringDoubleMap &, const ::Ice::Current &iceCurrent=::Ice::emptyCurrent) override
Definition: MPPool.cpp:110
armarx::control::common::mp::KeypointsMPOutputPtr
std::shared_ptr< KeypointsMPOutput > KeypointsMPOutputPtr
Definition: KeypointsMP.h:46
armarx::MPPoolInterface::removeAllViaPoint
void removeAllViaPoint()
KeypointsMP.h
armarx::control::common::mp::DVec
Ice::DoubleSeq DVec
Definition: MP.h:47
armarx::control::common::mp::JSMPPtr
std::shared_ptr< JSMP > JSMPPtr
Definition: JSMP.h:61
armarx::control::common::mp::MPPool::deserialize
DVec deserialize(const std::string &, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:466
armarx::MPPoolInterface::startAll
void startAll()
armarx::control::common::mp::MPPool::mtx_mps
std::recursive_mutex mtx_mps
Definition: MPPool.h:128
armarx::control::common::mp::MPPool::reInitMPInputOutputData
void reInitMPInputOutputData(const std::map< std::string, VirtualRobot::RobotNodeSetPtr > &rnsMap)
Definition: MPPool.cpp:548
armarx::control::common::mp::MPPool::pause
void pause(const std::string &mpName="all", const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:231
ARMARX_ERROR
#define ARMARX_ERROR
Definition: Logging.h:196
armarx::control::common::mp::MPPool::updateMPConfig
void updateMPConfig(const ::armarx::aron::data::dto::DictPtr &dto, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:495
armarx::control::common::mp::MPPool::learnFromCSV
void learnFromCSV(const Ice::StringSeq &fileNames=std::vector< std::string >(), const Ice::Current &iceCurrent=Ice::emptyCurrent) override
setting
Definition: MPPool.cpp:344
ExpressionException.h
armarx::aron::data::DictPtr
std::shared_ptr< Dict > DictPtr
Definition: Dict.h:41
ARMARX_INFO
#define ARMARX_INFO
Definition: Logging.h:181
armarx::control::common::mp::MPPool::setStartAndGoal
void setStartAndGoal(const DVec &starts, const DVec &goals, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:436
armarx::MPPoolInterface::pauseAll
void pauseAll()
armarx::control::common::mp::KeypointsMPInput
Definition: KeypointsMP.h:32
armarx::StringDoubleMap
dictionary< string, double > StringDoubleMap
Definition: MPPoolInterface.ice:35
armarx::control::common::mp::TSMPOutput
Definition: TSMP.h:40
armarx::control::common::mp::JSMP
Definition: JSMP.h:50
armarx::control::common::mp::MPPool::start
void start(const std::string &mpName="all", const DVec &startVec=std::vector< double >(), const DVec &goalVec=std::vector< double >(), Ice::Double timeDuration=-1.0, const Ice::Current &iceCurrent=Ice::emptyCurrent) override
control
Definition: MPPool.cpp:146
armarx::control::common::mp::JSMPInput
Definition: JSMP.h:34
armarx::control::common::mp::TSMPInput
Definition: TSMP.h:33
armarx::control::common::mp::MPPool::mps
std::map< std::string, MPInputOutput > mps
Definition: MPPool.h:127
armarx::MPPoolInterface::trainMP
void trainMP()
armarx::control::common::mp::TSMPInputPtr
std::shared_ptr< TSMPInput > TSMPInputPtr
Definition: TSMP.h:46
armarx::MPPoolInterface::serialize
string serialize()
serialze
ARMARX_WARNING
#define ARMARX_WARNING
Definition: Logging.h:193
MPPool.h
armarx::control::common::mp::KeypointsMP
Definition: KeypointsMP.h:48
ArmarXDataPath.h
armarx::StringDoubleSeqMap
dictionary< string, Ice::DoubleSeq > StringDoubleSeqMap
Definition: MPPoolInterface.ice:34
armarx::control::common::mp::KeypointsMPPtr
std::shared_ptr< KeypointsMP > KeypointsMPPtr
Definition: KeypointsMP.h:57
armarx::control::common::mp::KeypointsMPInputPtr
std::shared_ptr< KeypointsMPInput > KeypointsMPInputPtr
Definition: KeypointsMP.h:45
armarx::control::common::mp::MPPool::isFinished
bool isFinished(const std::string &mpName="all", const Ice::Current &iceCurrent=Ice::emptyCurrent) override
Definition: MPPool.cpp:324
armarx::control::common::mp::MPPool::mpConfig
MPListConfig mpConfig
this variable is only needed when constructing the MP instances, therefore you don't need to use trip...
Definition: MPPool.h:134