1 // Copyright (C) 2006-2014 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "OptimizerLoop.hxx"
21 #include "OutputPort.hxx"
22 #include "Visitor.hxx"
27 #include "YacsTrace.hxx"
29 using namespace YACS::ENGINE;
32 const char FakeNodeForOptimizerLoop::NAME[]="thisIsAFakeNode";
34 const int OptimizerLoop::NOT_RUNNING_BRANCH_ID=-1973012217;
35 const int OptimizerLoop::NOT_INITIALIZED_BRANCH_ID=-1973;
37 const char OptimizerLoop::NAME_OF_ALGO_INIT_PORT[] = "algoInit";
38 const char OptimizerLoop::NAME_OF_OUT_POOL_INPUT[] = "evalResults";
39 const char OptimizerLoop::NAME_OF_ALGO_RESULT_PORT[] = "algoResults";
42 FakeNodeForOptimizerLoop::FakeNodeForOptimizerLoop(OptimizerLoop *loop, bool normal, std::string message)
43 : ElementaryNode(NAME), _loop(loop), _normal(normal), _message(message)
45 _state=YACS::TOACTIVATE;
46 _father=_loop->getFather();
49 FakeNodeForOptimizerLoop::FakeNodeForOptimizerLoop(const FakeNodeForOptimizerLoop& other)
50 : ElementaryNode(other), _loop(0), _normal(other._normal), _message(other._message)
54 Node *FakeNodeForOptimizerLoop::simpleClone(ComposedNode *father, bool editionOnly) const
56 return new FakeNodeForOptimizerLoop(*this);
59 void FakeNodeForOptimizerLoop::exForwardFailed()
61 _loop->exForwardFailed();
64 void FakeNodeForOptimizerLoop::exForwardFinished()
66 _loop->exForwardFinished();
69 void FakeNodeForOptimizerLoop::execute()
71 DEBTRACE("FakeNodeForOptimizerLoop::execute: " << _message)
73 _loop->_errorDetails = _message;
74 throw Exception(_message);
78 _loop->_algoResultPort.put(_loop->_alg->getAlgoResultProxy());
82 void FakeNodeForOptimizerLoop::aborted()
84 _loop->setState(YACS::ERROR);
87 void FakeNodeForOptimizerLoop::finished()
89 _loop->setState(YACS::DONE);
92 /*! \class YACS::ENGINE::OptimizerLoop
93 * \brief class to build optimization loops
95 * \ingroup ComposedNodes
98 OptimizerLoop::OptimizerLoop(const std::string& name, const std::string& algLibWthOutExt,
99 const std::string& symbolNameToOptimizerAlgBaseInstanceFactory,
100 bool algInitOnFile,bool initAlgo, Proc * procForTypes):
101 DynParaLoop(name,Runtime::_tc_string),_algInitOnFile(algInitOnFile),_alglib(algLibWthOutExt),
102 _algoInitPort(NAME_OF_ALGO_INIT_PORT, this, Runtime::_tc_string, true),
103 _loader(NULL),_alg(0),_convergenceReachedWithOtherCalc(false),
104 _retPortForOutPool(NAME_OF_OUT_POOL_INPUT,this,Runtime::_tc_string),
105 _nodeForSpecialCases(0), _algoResultPort(NAME_OF_ALGO_RESULT_PORT, this, Runtime::_tc_string)
107 //We need this because calling a virtual method in a constructor does not call the most derived method but the method of the class
108 //A derived class must take care to manage that
110 setAlgorithm(algLibWthOutExt,symbolNameToOptimizerAlgBaseInstanceFactory, procForTypes);
113 OptimizerLoop::OptimizerLoop(const OptimizerLoop& other, ComposedNode *father, bool editionOnly):
114 DynParaLoop(other,father,editionOnly),_algInitOnFile(other._algInitOnFile),_alglib(other._alglib),
115 _convergenceReachedWithOtherCalc(false),_loader(NULL),_alg(0),_algoInitPort(other._algoInitPort,this),
116 _retPortForOutPool(other._retPortForOutPool,this),_nodeForSpecialCases(0),
117 _algoResultPort(other._algoResultPort, this)
119 //Don't call setAlgorithm here because it will be called several times if the class is derived. Call it in simpleClone for cloning
122 OptimizerLoop::~OptimizerLoop()
129 delete _nodeForSpecialCases;
132 Node *OptimizerLoop::simpleClone(ComposedNode *father, bool editionOnly) const
134 OptimizerLoop* ol=new OptimizerLoop(*this,father,editionOnly);
135 // TODO: Remove this const_cast (find a better design to get the type codes from the original node)
136 Proc * procForTypes = ol->getProc();
137 if (procForTypes == NULL) {
138 const Proc * origProc = getProc();
139 procForTypes = const_cast<Proc *>(origProc);
141 ol->setAlgorithm(_alglib, _symbol, false, procForTypes);
145 void OptimizerLoop::init(bool start)
147 DynParaLoop::init(start);
148 _algoInitPort.exInit(start);
149 _retPortForOutPool.exInit(start);
150 _algoResultPort.exInit();
151 _convergenceReachedWithOtherCalc=false;
156 void OptimizerLoop::exUpdateState()
158 if(_state == YACS::DISABLED)
160 delete _nodeForSpecialCases;
161 _nodeForSpecialCases = NULL;
164 if(_inGate.exIsReady())
166 setState(YACS::TOACTIVATE);
167 // Force termination in case the previous algorithm did not finish properly (manual stop)
169 _myPool.destroyAll();
171 // Initialize and launch the algorithm
172 _alg->initializeProxy(_algoInitPort.getValue());
174 if (_alg->hasError()) {
175 string error = _alg->getError();
177 throw Exception(error);
180 //internal graph update
182 int nbOfBr=_nbOfBranches.getIntValue();
183 _alg->setNbOfBranches(nbOfBr);
186 // A number of branches of 0 is acceptable if there are no output ports
187 // leaving OptimizerLoop
188 bool normal = getAllOutPortsLeavingCurrentScope().empty();
189 _nodeForSpecialCases = new FakeNodeForOptimizerLoop(this, normal,
190 "OptimizerLoop has no branch to run the internal node(s)");
193 _execNodes.resize(nbOfBr);
194 _execIds.resize(nbOfBr);
197 _execInitNodes.resize(nbOfBr);
198 _initNodeUpdated.resize(nbOfBr);
199 for(i=0;i<nbOfBr;i++)
200 _initNodeUpdated[i]=false;
202 _initializingCounter = 0;
204 _execFinalizeNodes.resize(nbOfBr);
205 vector<Node *> origNodes;
206 origNodes.push_back(_initNode);
207 origNodes.push_back(_node);
208 origNodes.push_back(_finalizeNode);
209 for(i=0;i<nbOfBr;i++)
211 _execIds[i]=NOT_INITIALIZED_BRANCH_ID;
212 vector<Node *> clonedNodes = cloneAndPlaceNodesCoherently(origNodes);
214 _execInitNodes[i] = clonedNodes[0];
215 _execNodes[i] = clonedNodes[1];
217 _execFinalizeNodes[i] = clonedNodes[2];
218 prepareInputsFromOutOfScope(i);
220 initInterceptors(nbOfBr);
222 unsigned char priority;
223 Any *val=_myPool.getNextSampleWithHighestPriority(id,priority);
226 // It is acceptable to have no sample to launch if there are no output ports
227 // leaving OptimizerLoop
228 std::set<OutPort *> setOutPort = getAllOutPortsLeavingCurrentScope();
229 // Special in the special
230 // We do not check algoResult
231 setOutPort.erase(&_algoResultPort);
232 bool normal = setOutPort.empty();
233 _nodeForSpecialCases = new FakeNodeForOptimizerLoop(this, normal,
234 string("The algorithm of OptimizerLoop with name ") + _name +
235 " returns no sample to launch");
238 launchMaxOfSamples(true);
241 catch (const exception & e)
243 _nodeForSpecialCases = new FakeNodeForOptimizerLoop(this, false,
244 string("An error happened in the control algorithm of OptimizerLoop \"") + _name +
249 int OptimizerLoop::getNumberOfInputPorts() const
251 return DynParaLoop::getNumberOfInputPorts()+2;
254 InputPort *OptimizerLoop::getInputPort(const std::string& name) const throw(YACS::Exception)
256 if (name == NAME_OF_ALGO_INIT_PORT)
257 return (InputPort *)&_algoInitPort;
258 else if (name == NAME_OF_OUT_POOL_INPUT)
259 return (InputPort *)&_retPortForOutPool;
261 return DynParaLoop::getInputPort(name);
264 std::list<InputPort *> OptimizerLoop::getSetOfInputPort() const
266 list<InputPort *> ret=DynParaLoop::getSetOfInputPort();
267 ret.push_back((InputPort *)&_algoInitPort);
268 ret.push_back((InputPort *)&_retPortForOutPool);
272 std::list<InputPort *> OptimizerLoop::getLocalInputPorts() const
274 list<InputPort *> ret=DynParaLoop::getLocalInputPorts();
275 ret.push_back((InputPort *)&_algoInitPort);
276 ret.push_back((InputPort *)&_retPortForOutPool);
280 void OptimizerLoop::selectRunnableTasks(std::vector<Task *>& tasks)
284 void OptimizerLoop::getReadyTasks(std::vector<Task *>& tasks)
288 if(_state==YACS::TOACTIVATE || _state==YACS::ACTIVATED)
290 if(_nodeForSpecialCases)
292 _nodeForSpecialCases->getReadyTasks(tasks);
295 vector<Node *>::iterator iter;
296 for (iter=_execNodes.begin() ; iter!=_execNodes.end() ; iter++)
297 (*iter)->getReadyTasks(tasks);
298 for (iter=_execInitNodes.begin() ; iter!=_execInitNodes.end() ; iter++)
299 (*iter)->getReadyTasks(tasks);
300 for (iter=_execFinalizeNodes.begin() ; iter!=_execFinalizeNodes.end() ; iter++)
301 (*iter)->getReadyTasks(tasks);
305 YACS::Event OptimizerLoop::updateStateOnFinishedEventFrom(Node *node)
307 if (getState() == YACS::FAILED)
309 // This happens when a valid computation on a branch finishes after an error on another branch.
310 // In this case we just ignore the new result because the algorithm has already been terminated.
311 return YACS::NOEVENT;
314 switch(getIdentityOfNotifyerNode(node,id))
318 _execNodes[id]->exUpdateState();
320 _initializingCounter--;
321 if (_initializingCounter == 0) _initNode->setState(DONE);
326 if(_convergenceReachedWithOtherCalc)
327 { //This case happens when alg has reached its convergence whereas other calculations still compute
328 _execIds[id]=NOT_RUNNING_BRANCH_ID;
330 return YACS::NOEVENT;
334 _myPool.putOutSampleAt(_execIds[id],_interceptorsForOutPool[id]->getValue());
335 _myPool.setCurrentId(_execIds[id]);
336 _alg->takeDecisionProxy();
337 if (_alg->hasError()) {
338 _errorDetails = string("An error happened in the control algorithm of optimizer loop: ") +
341 setState(YACS::FAILED);
345 _myPool.destroyCurrentCase();
348 pushValueOutOfScopeForCase(id);
349 _execIds[id]=NOT_RUNNING_BRANCH_ID;
351 {// This case happens when the hand is returned to continue, whereas some other are working in parallel for nothing.
352 _convergenceReachedWithOtherCalc=true;
353 return YACS::NOEVENT;
357 _execIds[id]=NOT_RUNNING_BRANCH_ID;
359 unsigned char priority;
360 Any *val=_myPool.getNextSampleWithHighestPriority(newId, priority);
363 bool isFinished=true;
364 for(int i=0;i<_execIds.size() && isFinished;i++)
365 isFinished=(_execIds[i]==NOT_RUNNING_BRANCH_ID || _execIds[i]==NOT_INITIALIZED_BRANCH_ID);
368 std::cerr <<"OptimizerLoop::updateStateOnFinishedEventFrom: Alg has not inserted more cases whereas last element has been calculated !" << std::endl;
369 setState(YACS::ERROR);
374 return YACS::NOEVENT;
376 launchMaxOfSamples(false);
381 _unfinishedCounter--;
382 if (_unfinishedCounter == 0)
384 _finalizeNode->setState(YACS::DONE);
385 setState(YACS::DONE);
389 return YACS::NOEVENT;
395 return YACS::NOEVENT;
398 YACS::Event OptimizerLoop::finalize()
400 //update internal node (definition node) state
403 _node->setState(YACS::DONE);
404 ComposedNode* compNode = dynamic_cast<ComposedNode*>(_node);
407 std::list<Node *> aChldn = compNode->getAllRecursiveConstituents();
408 std::list<Node *>::iterator iter=aChldn.begin();
409 for(;iter!=aChldn.end();iter++)
410 (*iter)->setState(YACS::DONE);
414 _algoResultPort.put(_alg->getAlgoResultProxy());
415 if (_finalizeNode == NULL)
417 // No finalize node, we just finish OptimizerLoop at the end of exec nodes execution
418 setState(YACS::DONE);
423 // Run the finalize nodes, the OptimizerLoop will be done only when they all finish
424 _unfinishedCounter = 0; // This counter indicates how many branches are not finished
425 for (int i=0 ; i<_nbOfBranches.getIntValue() ; i++)
426 if (_execIds[i] == NOT_RUNNING_BRANCH_ID)
428 DEBTRACE("Launching finalize node for branch " << i)
429 _execFinalizeNodes[i]->exUpdateState();
430 _unfinishedCounter++;
433 // There should not be any running branch at this point
434 YASSERT(_execIds[i] == NOT_INITIALIZED_BRANCH_ID)
435 return YACS::NOEVENT;
439 //! Method used to notify the node that a child node has failed
441 * Notify the slave thread of the error, update the current state and
442 * return the change state
444 * \param node : the child node that has failed
445 * \return the state change
447 YACS::Event OptimizerLoop::updateStateOnFailedEventFrom(Node *node)
449 DEBTRACE("OptimizerLoop::updateStateOnFailedEventFrom " << node->getName());
450 _alg->setError(string("Error during the execution of YACS node ") + node->getName() +
451 ": " + node->getErrorReport());
453 _myPool.destroyAll();
454 DEBTRACE("OptimizerLoop::updateStateOnFailedEventFrom: returned from error notification.");
455 return DynParaLoop::updateStateOnFailedEventFrom(node);
458 void OptimizerLoop::checkNoCyclePassingThrough(Node *node) throw(YACS::Exception)
462 void OptimizerLoop::buildDelegateOf(InPort * & port, OutPort *initialStart, const std::list<ComposedNode *>& pointsOfView)
464 DynParaLoop::buildDelegateOf(port,initialStart,pointsOfView);
465 if(port==&_retPortForOutPool)
466 throw Exception("OptimizerLoop::buildDelegateOf : uncorrect OptimizerLoop link : out pool port must be linked within the scope of OptimizerLoop node it belongs to.");
469 void OptimizerLoop::buildDelegateOf(std::pair<OutPort *, OutPort *>& port, InPort *finalTarget, const std::list<ComposedNode *>& pointsOfView)
471 DynParaLoop::buildDelegateOf(port,finalTarget,pointsOfView);
472 string typeOfPortInstance=(port.first)->getNameOfTypeOfCurrentInstance();
473 if(typeOfPortInstance!=OutputPort::NAME)
474 throw Exception("OptimizerLoop::buildDelegateOf : not implemented for DS because not specified ");
477 void OptimizerLoop::checkControlDependancy(OutPort *start, InPort *end, bool cross,
478 std::map < ComposedNode *, std::list < OutPort * >, SortHierarc >& fw,
479 std::vector<OutPort *>& fwCross,
480 std::map< ComposedNode *, std::list < OutPort *>, SortHierarc >& bw,
481 LinkInfo& info) const
483 if(end==&_retPortForOutPool)
484 fw[(ComposedNode *)this].push_back(start);
486 DynParaLoop::checkControlDependancy(start,end,cross,fw,fwCross,bw,info);
489 void OptimizerLoop::checkCFLinks(const std::list<OutPort *>& starts, InputPort *end, unsigned char& alreadyFed, bool direction, LinkInfo& info) const
491 if(end==&_retPortForOutPool)
492 solveObviousOrDelegateCFLinks(starts,end,alreadyFed,direction,info);
494 DynParaLoop::checkCFLinks(starts,end,alreadyFed,direction,info);
497 void OptimizerLoop::cleanInterceptors()
499 // At this point all garanties taken let's clean all.
500 map<InputPort *,vector<InputPort *> >::iterator iter=_interceptors.begin();
501 for(;iter!=_interceptors.end();iter++)
502 for(vector<InputPort *>::iterator iter2=(*iter).second.begin();iter2!=(*iter).second.end();iter2++)
504 _interceptors.clear();
505 for(vector<AnyInputPort *>::iterator iter3=_interceptorsForOutPool.begin();iter3!=_interceptorsForOutPool.end();iter3++)
507 _interceptorsForOutPool.clear();
510 void OptimizerLoop::launchMaxOfSamples(bool first)
513 unsigned char priority;
516 for (val = _myPool.getNextSampleWithHighestPriority(id, priority);
517 !isFullyBusy(i) && val;
518 val = _myPool.getNextSampleWithHighestPriority(id, priority))
520 if(_execIds[i] == NOT_INITIALIZED_BRANCH_ID)
521 first=true; // node is not initialized (first pass)
523 first=false; // node is initialized (second pass)
525 _myPool.markIdAsInUse(id);
526 if(_initNode && !_initNodeUpdated[i])
528 putValueOnBranch(val,i,first);
529 _execInitNodes[i]->exUpdateState();
530 _initNodeUpdated[i]=true;
531 _initializingCounter++;
536 _execNodes[i]->init(first);
537 putValueOnBranch(val,i,first);
538 _execNodes[i]->exUpdateState();
544 bool OptimizerLoop::isFullyLazy() const
547 for(unsigned i=0;i<_execIds.size() && isLazy;i++)
548 isLazy=(_execIds[i]==NOT_RUNNING_BRANCH_ID || _execIds[i]==NOT_INITIALIZED_BRANCH_ID);
553 * Returns if a dynamic branch is available.
554 * \param branchId Out param. Only usable if returned value is equal to \b false.
556 bool OptimizerLoop::isFullyBusy(unsigned& branchId) const
558 bool isFinished=true;
560 for(i=0;i<_execIds.size() && isFinished;i++)
561 isFinished=(_execIds[i]!=NOT_RUNNING_BRANCH_ID && _execIds[i]!=NOT_INITIALIZED_BRANCH_ID);
568 * Perform initialization of interceptors. \b WARNING _execNodes have to be created before.
570 void OptimizerLoop::initInterceptors(unsigned nbOfBr)
572 //For all classical outputports leaving 'this'
573 set<OutPort *> portsToIntercept=getAllOutPortsLeavingCurrentScope();
574 portsToIntercept.erase(&_algoResultPort);
575 for(set<OutPort *>::iterator iter=portsToIntercept.begin();iter!=portsToIntercept.end();iter++)
577 OutputPort *portC=(OutputPort *)(*iter);//Warrantied by OptimizerLoop::buildDelegateOf
578 const set<InputPort *>& links=portC->getSetOfPhyLinks();
579 for(set<InputPort *>::const_iterator iter2=links.begin();iter2!=links.end();iter2++)
582 InputPort *reprCur=dynamic_cast<InputPort *>((*iter2)->getPublicRepresentant());
584 InputPort *reprCur=(*iter2)->getPublicRepresentant();
586 if(!isInMyDescendance(reprCur->getNode()))
587 {//here we've got an out of scope link : Let's intercept it
588 if(_interceptors.find(reprCur)==_interceptors.end())
590 _interceptors[reprCur].resize(nbOfBr);
591 for(unsigned i=0;i<nbOfBr;i++)
593 OutputPort *portExecC=(OutputPort *)_execNodes[i]->getOutputPort(_node->getOutPortName(portC));
594 InputPort *clone=reprCur->clone(0);
595 _interceptors[reprCur][i]=clone;
596 portExecC->edAddInputPort(clone);
601 for(unsigned i=0;i<nbOfBr;i++)
603 OutputPort *portExecC=(OutputPort *)_execNodes[i]->getOutputPort(_node->getOutPortName(portC));
604 portExecC->edAddInputPort(_interceptors[reprCur][i]);
611 _interceptorsForOutPool.resize(nbOfBr);
612 set< OutPort * > links=_retPortForOutPool.edSetOutPort();
613 for(unsigned i=0;i<nbOfBr;i++)
614 _interceptorsForOutPool[i]=(AnyInputPort *)_retPortForOutPool.clone(this);
615 for(set<OutPort *>::iterator iter2=links.begin();iter2!=links.end();iter2++)
616 for(unsigned j=0;j<nbOfBr;j++)
619 Node *whatType=isInMyDescendance((*iter2)->getNode());
622 portExec=_execNodes[j]->getOutPort(_node->getOutPortName(*iter2));
623 portExec->addInPort(_interceptorsForOutPool[j]);
625 else if(whatType==_initNode && whatType!=0)//This case should never happend. Useless !
627 portExec=_execInitNodes[j]->getOutPort(_node->getOutPortName(*iter2));
628 portExec->addInPort(_interceptorsForOutPool[j]);
634 * Typically called when _alg has decided that convergence has been reached. In this case the links leaving the current scope are activated and filled
635 * with value of the branch specified by 'branchId' that is the branch in which the convergence has been reached.
637 void OptimizerLoop::pushValueOutOfScopeForCase(unsigned branchId)
639 map<InputPort *, std::vector<InputPort *> >::iterator iter;
640 for(iter=_interceptors.begin();iter!=_interceptors.end();iter++)
641 (*iter).first->put((*iter).second[branchId]->get());
644 void OptimizerLoop::accept(Visitor *visitor)
646 visitor->visitOptimizerLoop(this);
649 //! Set the algorithm library name and factory name (symbol in library) to create the algorithm and change it if the node is not connected
651 * throw an exception if the node is connected
653 void OptimizerLoop::setAlgorithm(const std::string& alglib, const std::string& symbol,
654 bool checkLinks, Proc * procForTypes)
658 if (_splittedPort.edGetNumberOfOutLinks() != 0 ||
659 _retPortForOutPool.edGetNumberOfLinks() != 0 ||
660 _algoInitPort.edGetNumberOfLinks() != 0 ||
661 _algoResultPort.edGetNumberOfOutLinks() != 0)
662 throw Exception("The OptimizerLoop node must be disconnected before setting the algorithm");
677 _alg->setProc((procForTypes == NULL) ? getProc() : procForTypes);
679 // Delete the values in the input ports if they were initialized
680 _retPortForOutPool.put((Any *)NULL);
681 _algoInitPort.put((Any *)NULL);
683 // Change the type of the ports
684 _splittedPort.edSetType(checkTypeCode(_alg->getTCForInProxy(), NAME_OF_SPLITTED_SEQ_OUT));
685 _retPortForOutPool.edSetType(checkTypeCode(_alg->getTCForOutProxy(), NAME_OF_OUT_POOL_INPUT));
686 _algoInitPort.edSetType(checkTypeCode(_alg->getTCForAlgoInitProxy(), NAME_OF_ALGO_INIT_PORT));
687 _algoResultPort.edSetType(checkTypeCode(_alg->getTCForAlgoResultProxy(), NAME_OF_ALGO_RESULT_PORT));
693 TypeCode * OptimizerLoop::checkTypeCode(TypeCode * tc, const char * portName)
696 ostringstream errorMsg;
697 errorMsg << "The algorithm specified for OptimizerLoop node \"" << getName() <<
698 "\" provided an invalid type for port \"" << portName << "\"";
699 throw Exception(errorMsg.str());
704 //! Load the algorithm from the dynamic library
708 void OptimizerLoop::loadAlgorithm()
710 YASSERT(_alg == NULL)
712 if (_loader != NULL) {
716 _loader = new YACS::BASES::DynLibLoader(_alglib);
717 OptimizerAlgBaseFactory algFactory = NULL;
719 if (_alglib != "" && _symbol != "")
724 algFactory = (OptimizerAlgBaseFactory)_loader->getHandleOnSymbolWithName(_symbol);
726 catch (YACS::Exception& e)
728 _errorDetails = e.what();
734 if (algFactory != NULL)
735 _alg = algFactory(&_myPool);
738 //! Return the name of the algorithm library
742 std::string OptimizerLoop::getAlgLib() const
747 //! Check validity for the node.
749 * Throw an exception if the node is not valid
751 void OptimizerLoop::checkBasicConsistency() const throw(YACS::Exception)
753 DEBTRACE("OptimizerLoop::checkBasicConsistency");
755 throw Exception("No library specified for the OptimizerLoop control algorithm");
757 throw Exception("No symbol specified for the OptimizerLoop control algorithm");
759 throw YACS::Exception("Problem during library loading: "+_errorDetails);
761 DynParaLoop::checkBasicConsistency();
764 int OptimizerLoop::getNumberOfOutputPorts() const
766 return DynParaLoop::getNumberOfOutputPorts() + 1;
769 std::list<OutputPort *> OptimizerLoop::getSetOfOutputPort() const
771 list<OutputPort *> ret = DynParaLoop::getSetOfOutputPort();
772 ret.push_back((OutputPort *)&_algoResultPort);
776 std::list<OutputPort *> OptimizerLoop::getLocalOutputPorts() const
778 list<OutputPort *> ret = DynParaLoop::getLocalOutputPorts();
779 ret.push_front((OutputPort *)&_algoResultPort);
783 OutPort * OptimizerLoop::getOutPort(const std::string& name) const throw(YACS::Exception)
785 return (name == NAME_OF_ALGO_RESULT_PORT) ? (OutPort *)&_algoResultPort :
786 DynParaLoop::getOutPort(name);
790 OutputPort * OptimizerLoop::getOutputPort(const std::string& name) const throw(YACS::Exception)
792 return (name == NAME_OF_ALGO_RESULT_PORT) ? (OutputPort *)&_algoResultPort :
793 DynParaLoop::getOutputPort(name);