1 // Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File : SMESHGUI_HypothesesUtils.cxx
25 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
28 #include "SMESHGUI_HypothesesUtils.h"
31 #include "SMESHGUI_Hypotheses.h"
32 #include "SMESHGUI_XmlHandler.h"
33 #include "SMESHGUI_Utils.h"
34 #include "SMESHGUI_GEOMGenUtils.h"
36 // SALOME GUI includes
37 #include <SUIT_Desktop.h>
38 #include <SUIT_MessageBox.h>
39 #include <SUIT_OverrideCursor.h>
40 #include <SUIT_ResourceMgr.h>
42 #include <SalomeApp_Study.h>
43 #include <SalomeApp_Tools.h>
45 // SALOME KERNEL includes
46 #include <utilities.h>
65 #define LibHandle HMODULE
66 #define LoadLib( name ) LoadLibrary( name )
67 #define GetProc GetProcAddress
68 #define UnLoadLib( handle ) FreeLibrary( handle );
70 #define LibHandle void*
71 #define LoadLib( name ) dlopen( name, RTLD_LAZY )
73 #define UnLoadLib( handle ) dlclose( handle );
77 static int MYDEBUG = 1;
79 static int MYDEBUG = 0;
84 typedef IMap<QString,HypothesisData*> THypothesisDataMap;
85 THypothesisDataMap myHypothesesMap;
86 THypothesisDataMap myAlgorithmsMap;
89 //typedef QMap<QString,SMESHGUI_GenericHypothesisCreator*> THypCreatorMap;
90 //THypCreatorMap myHypCreatorMap;
92 QList<HypothesesSet*> myListOfHypothesesSets;
94 void processHypothesisStatus(const int theHypStatus,
95 SMESH::SMESH_Hypothesis_ptr theHyp,
96 const bool theIsAddition)
98 if (theHypStatus > SMESH::HYP_OK) {
100 QString aHypName ("NULL Hypothesis");
101 if (!CORBA::is_nil(theHyp)) {
102 _PTR(SObject) Shyp = SMESH::FindSObject(theHyp);
105 aHypName = Shyp->GetName().c_str();
108 aHypName = GetHypothesisData(theHyp->GetName())->Label;
112 bool isFatal = (theHypStatus >= SMESH::HYP_UNKNOWN_FATAL);
115 aMsg = (isFatal ? "SMESH_CANT_ADD_HYP" : "SMESH_ADD_HYP_WRN");
117 aMsg = (isFatal ? "SMESH_CANT_RM_HYP" : "SMESH_RM_HYP_WRN");
119 aMsg = QObject::tr(aMsg.toLatin1().data()).arg(aHypName) +
120 QObject::tr(QString("SMESH_HYP_%1").arg(theHypStatus).toLatin1().data());
122 if ( theHypStatus == SMESH::HYP_HIDDEN_ALGO ) // PAL18501
123 aMsg = aMsg.arg( GetHypothesisData(theHyp->GetName())->Dim[0] );
125 SUIT_MessageBox::warning(SMESHGUI::desktop(),
126 QObject::tr("SMESH_WRN_WARNING"),
131 //================================================================================
133 * \brief Prepends dimension and appends '[custom]' to the name of hypothesis set
135 //================================================================================
137 static QString mangledHypoSetName(HypothesesSet* hypSet)
139 QString name = hypSet->name();
142 int dim = hypSet->maxDim();
144 name = QString("%1D: %2").arg(dim).arg(name);
147 if ( hypSet->getIsCustom() )
148 name = QString("%1 [custom]").arg(name);
153 //================================================================================
155 * \brief Removes dimension and '[custom]' from the name of hypothesis set
157 //================================================================================
159 static QString demangledHypoSetName(QString name)
161 name.remove(QRegExp("[0-3]D: "));
162 name.remove(" [custom]");
166 void InitAvailableHypotheses()
168 SUIT_OverrideCursor wc;
169 if (myHypothesesMap.empty() && myAlgorithmsMap.empty()) {
171 SUIT_ResourceMgr* resMgr = SMESHGUI::resourceMgr();
174 // Find name of a resource XML file ("SMESH_Meshers.xml");
176 char* cenv = getenv("SMESH_MeshersList");
178 HypsXml.sprintf("%s", cenv);
180 QStringList HypsXmlList = HypsXml.split(":", QString::SkipEmptyParts);
181 if (HypsXmlList.count() == 0) {
182 SUIT_MessageBox::critical(SMESHGUI::desktop(),
183 QObject::tr("SMESH_WRN_WARNING"),
184 QObject::tr("MESHERS_FILE_NO_VARIABLE"));
187 // get full names of xml files from HypsXmlList
188 QStringList xmlFiles;
189 xmlFiles.append( QDir::home().filePath("CustomMeshers.xml")); // may be inexistent
190 for (int i = 0; i < HypsXmlList.count(); i++) {
191 QString HypsXml = HypsXmlList[ i ];
193 // Find full path to the resource XML file
194 QString xmlFile = resMgr->path("resources", "SMESH", HypsXml + ".xml");
195 if ( xmlFile.isEmpty() ) // try PLUGIN resources
196 xmlFile = resMgr->path("resources", HypsXml, HypsXml + ".xml");
197 if ( !xmlFile.isEmpty() )
198 xmlFiles.append( xmlFile );
202 QString aNoAccessFiles;
203 for (int i = 0; i < xmlFiles.count(); i++)
205 QString xmlFile = xmlFiles[ i ];
206 QFile file (xmlFile);
207 if (file.exists() && file.open(QIODevice::ReadOnly))
211 SMESHGUI_XmlHandler* aXmlHandler = new SMESHGUI_XmlHandler();
214 QXmlInputSource source (&file);
215 QXmlSimpleReader reader;
216 reader.setContentHandler(aXmlHandler);
217 reader.setErrorHandler(aXmlHandler);
218 bool ok = reader.parse(source);
222 THypothesisDataMap::ConstIterator it1 = aXmlHandler->myHypothesesMap.begin();
224 for( ;it1 != aXmlHandler->myHypothesesMap.end(); it1++)
225 myHypothesesMap.insert( it1.key(), it1.value() );
228 it1 = aXmlHandler->myAlgorithmsMap.begin();
229 for( ;it1 != aXmlHandler->myAlgorithmsMap.end(); it1++)
230 myAlgorithmsMap.insert( it1.key(), it1.value() );
232 QList<HypothesesSet*>::iterator it, pos = myListOfHypothesesSets.begin();
233 for ( it = aXmlHandler->myListOfHypothesesSets.begin();
234 it != aXmlHandler->myListOfHypothesesSets.end();
237 (*it)->setIsCustom( i == 0 );
238 myListOfHypothesesSets.insert( pos, *it );
242 SUIT_MessageBox::critical(SMESHGUI::desktop(),
243 QObject::tr("INF_PARSE_ERROR"),
244 QObject::tr(aXmlHandler->errorProtocol().toLatin1().data()));
248 else if ( i > 0 ) { // 1st is ~/CustomMeshers.xml
249 if (aNoAccessFiles.isEmpty())
250 aNoAccessFiles = xmlFile;
252 aNoAccessFiles += ", " + xmlFile;
254 } // end loop on xmlFiles
257 if (!aNoAccessFiles.isEmpty()) {
258 QString aMess = QObject::tr("MESHERS_FILE_CANT_OPEN") + " " + aNoAccessFiles + "\n";
259 aMess += QObject::tr("MESHERS_FILE_CHECK_VARIABLE");
261 SUIT_MessageBox::warning(SMESHGUI::desktop(),
262 QObject::tr("SMESH_WRN_WARNING"),
270 QStringList GetAvailableHypotheses( const bool isAlgo,
273 const bool isNeedGeometry)
275 QStringList aHypList;
277 // Init list of available hypotheses, if needed
278 InitAvailableHypotheses();
279 bool checkGeometry = ( !isNeedGeometry && isAlgo );
280 // fill list of hypotheses/algorithms
281 THypothesisDataMap& pMap = isAlgo ? myAlgorithmsMap : myHypothesesMap;
282 THypothesisDataMap::ConstIterator anIter;
283 for ( anIter = pMap.begin(); anIter != pMap.end(); anIter++ ) {
284 HypothesisData* aData = anIter.value();
285 if(!aData || aData->Label.isEmpty()) continue;
286 if ( ( theDim < 0 || aData->Dim.contains( theDim ) ) && aData->IsAux == isAux) {
288 if (aData->IsNeedGeometry == isNeedGeometry)
289 aHypList.append(anIter.key());
292 aHypList.append(anIter.key());
300 QStringList GetHypothesesSets(int maxDim)
302 QStringList aSetNameList;
304 // Init list of available hypotheses, if needed
305 InitAvailableHypotheses();
307 QList<HypothesesSet*>::iterator hypoSet;
308 for ( hypoSet = myListOfHypothesesSets.begin();
309 hypoSet != myListOfHypothesesSets.end();
311 HypothesesSet* aSet = *hypoSet;
313 ( aSet->count( true ) || aSet->count( false )) &&
314 aSet->maxDim() <= maxDim)
316 aSetNameList.append( mangledHypoSetName( aSet ));
321 // reverse order of aSetNameList
322 QStringList reversedNames;
323 for ( int i = 0; i < aSetNameList.count(); ++i )
324 reversedNames.prepend( aSetNameList[i] );
326 return reversedNames;
329 HypothesesSet* GetHypothesesSet(const QString& theSetName)
331 QString name = demangledHypoSetName( theSetName );
332 QList<HypothesesSet*>::iterator hypoSet;
333 for ( hypoSet = myListOfHypothesesSets.begin();
334 hypoSet != myListOfHypothesesSets.end();
336 HypothesesSet* aSet = *hypoSet;
337 if ( aSet && aSet->name() == name )
343 HypothesisData* GetHypothesisData (const QString& aHypType)
345 HypothesisData* aHypData = 0;
347 // Init list of available hypotheses, if needed
348 InitAvailableHypotheses();
350 if (myHypothesesMap.contains(aHypType)) {
351 aHypData = myHypothesesMap[aHypType];
353 else if (myAlgorithmsMap.contains(aHypType)) {
354 aHypData = myAlgorithmsMap[aHypType];
359 bool IsAvailableHypothesis(const HypothesisData* algoData,
360 const QString& hypType,
366 if ( algoData->NeededHypos.contains( hypType ))
368 if ( algoData->OptionalHypos.contains( hypType)) {
375 bool IsCompatibleAlgorithm(const HypothesisData* algo1Data,
376 const HypothesisData* algo2Data)
378 if ( !algo1Data || !algo2Data )
380 const HypothesisData* algoIn = algo1Data, *algoMain = algo2Data;
381 if ( algoIn->Dim.first() > algoMain->Dim.first() ) {
382 algoIn = algo2Data; algoMain = algo1Data;
384 // look for any output type of algoIn between input types of algoMain
385 QStringList::const_iterator inElemType = algoIn->OutputTypes.begin();
386 for ( ; inElemType != algoIn->OutputTypes.end(); ++inElemType )
387 if ( algoMain->InputTypes.contains( *inElemType ))
392 SMESHGUI_GenericHypothesisCreator* GetHypothesisCreator(const QString& aHypType)
394 if(MYDEBUG) MESSAGE("Get HypothesisCreator for " << aHypType.toLatin1().data());
396 SMESHGUI_GenericHypothesisCreator* aCreator = 0;
398 // check, if creator for this hypothesis type already exists
400 //if (myHypCreatorMap.find(aHypType) != myHypCreatorMap.end()) {
401 // aCreator = myHypCreatorMap[aHypType];
405 // 1. Init list of available hypotheses, if needed
406 InitAvailableHypotheses();
408 // 2. Get names of plugin libraries
409 HypothesisData* aHypData = GetHypothesisData(aHypType);
413 QString aClientLibName = aHypData->ClientLibName;
414 QString aServerLibName = aHypData->ServerLibName;
416 // 3. Load Client Plugin Library
418 // load plugin library
419 if(MYDEBUG) MESSAGE("Loading client meshers plugin library ...");
420 LibHandle libHandle = LoadLib( aClientLibName.toLatin1().data() );
422 // report any error, if occured
425 const char* anError = "Can't load client meshers plugin library";
427 const char* anError = dlerror();
429 INFOS(anError); // always display this kind of error !
433 // get method, returning hypothesis creator
434 if(MYDEBUG) MESSAGE("Find GetHypothesisCreator() method ...");
435 typedef SMESHGUI_GenericHypothesisCreator* (*GetHypothesisCreator) \
437 GetHypothesisCreator procHandle =
438 (GetHypothesisCreator)GetProc(libHandle, "GetHypothesisCreator");
440 if(MYDEBUG) MESSAGE("bad hypothesis client plugin library");
441 UnLoadLib(libHandle);
444 // get hypothesis creator
445 if(MYDEBUG) MESSAGE("Get Hypothesis Creator for " << aHypType.toLatin1().data());
446 aCreator = procHandle( aHypType );
448 if(MYDEBUG) MESSAGE("no such a hypothesis in this plugin");
451 // map hypothesis creator to a hypothesis name
453 //myHypCreatorMap[aHypType] = aCreator;
455 //rnv : This dynamic property of the QObject stores the name of the plugin.
456 // It is used to obtain plugin root dir environment variable
457 // in the SMESHGUI_HypothesisDlg class. Plugin root dir environment
458 // variable is used to display documentation.
459 aCreator->setProperty(PLUGIN_NAME,aHypData->PluginName);
464 catch (const SALOME::SALOME_Exception& S_ex) {
465 SalomeApp_Tools::QtCatchCorbaException(S_ex);
473 SMESH::SMESH_Hypothesis_ptr CreateHypothesis(const QString& aHypType,
474 const QString& aHypName,
477 if(MYDEBUG) MESSAGE("Create " << aHypType.toLatin1().data() <<
478 " with name " << aHypName.toLatin1().data());
479 HypothesisData* aHypData = GetHypothesisData(aHypType);
480 QString aServLib = aHypData->ServerLibName;
482 SMESH::SMESH_Hypothesis_var aHypothesis;
483 aHypothesis = SMESHGUI::GetSMESHGen()->CreateHypothesis(aHypType.toLatin1().data(),
484 aServLib.toLatin1().data());
485 if (!aHypothesis->_is_nil()) {
486 _PTR(SObject) aHypSObject = SMESH::FindSObject(aHypothesis.in());
488 if (!aHypName.isEmpty())
489 SMESH::SetName(aHypSObject, aHypName);
490 SMESHGUI::Modified();
491 SMESHGUI::GetSMESHGUI()->updateObjBrowser();
492 return aHypothesis._retn();
495 } catch (const SALOME::SALOME_Exception & S_ex) {
496 SalomeApp_Tools::QtCatchCorbaException(S_ex);
499 return SMESH::SMESH_Hypothesis::_nil();
503 bool AddHypothesisOnMesh (SMESH::SMESH_Mesh_ptr aMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
505 if(MYDEBUG) MESSAGE ("SMESHGUI::AddHypothesisOnMesh");
506 int res = SMESH::HYP_UNKNOWN_FATAL;
507 SUIT_OverrideCursor wc;
509 if (!aMesh->_is_nil()) {
510 _PTR(SObject) SM = SMESH::FindSObject(aMesh);
511 GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SM);
513 res = aMesh->AddHypothesis(aShapeObject, aHyp);
514 if (res < SMESH::HYP_UNKNOWN_FATAL) {
515 _PTR(SObject) aSH = SMESH::FindSObject(aHyp);
517 SMESH::ModifiedMesh(SM, false, aMesh->NbNodes()==0);
520 if (res > SMESH::HYP_OK) {
522 processHypothesisStatus(res, aHyp, true);
526 catch(const SALOME::SALOME_Exception& S_ex) {
528 SalomeApp_Tools::QtCatchCorbaException(S_ex);
529 res = SMESH::HYP_UNKNOWN_FATAL;
532 return res < SMESH::HYP_UNKNOWN_FATAL;
536 bool AddHypothesisOnSubMesh (SMESH::SMESH_subMesh_ptr aSubMesh, SMESH::SMESH_Hypothesis_ptr aHyp)
538 if(MYDEBUG) MESSAGE("SMESHGUI::AddHypothesisOnSubMesh() ");
539 int res = SMESH::HYP_UNKNOWN_FATAL;
540 SUIT_OverrideCursor wc;
542 if (!aSubMesh->_is_nil() && ! aHyp->_is_nil()) {
544 SMESH::SMESH_Mesh_var aMesh = aSubMesh->GetFather();
545 _PTR(SObject) SsubM = SMESH::FindSObject(aSubMesh);
546 GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(SsubM);
547 if (!aMesh->_is_nil() && SsubM && !aShapeObject->_is_nil()) {
548 res = aMesh->AddHypothesis(aShapeObject, aHyp);
549 if (res < SMESH::HYP_UNKNOWN_FATAL) {
550 _PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
552 SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
554 if (res > SMESH::HYP_OK) {
556 processHypothesisStatus(res, aHyp, true);
561 SCRUTE(aHyp->_is_nil());
562 SCRUTE(aMesh->_is_nil());
564 SCRUTE(aShapeObject->_is_nil());
567 catch(const SALOME::SALOME_Exception& S_ex) {
569 SalomeApp_Tools::QtCatchCorbaException(S_ex);
570 res = SMESH::HYP_UNKNOWN_FATAL;
574 SCRUTE(aSubMesh->_is_nil());
575 SCRUTE(aHyp->_is_nil());
577 return res < SMESH::HYP_UNKNOWN_FATAL;
580 bool RemoveHypothesisOrAlgorithmOnMesh (const Handle(SALOME_InteractiveObject)& IObject)
582 int res = SMESH::HYP_UNKNOWN_FATAL;
583 SUIT_OverrideCursor wc;
586 _PTR(Study) aStudy = GetActiveStudyDocument();
587 _PTR(SObject) aHypObj = aStudy->FindObjectID( IObject->getEntry() );
590 _PTR(SObject) MorSM = SMESH::GetMeshOrSubmesh( aHypObj );
591 _PTR(SObject) aRealHypo;
592 if( aHypObj->ReferencedObject( aRealHypo ) )
594 SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aRealHypo ) );
595 RemoveHypothesisOrAlgorithmOnMesh( MorSM, hypo );
599 SMESH_Hypothesis_var hypo = SMESH_Hypothesis::_narrow( SObjectToObject( aHypObj ) );
600 SObjectList meshList = GetMeshesUsingAlgoOrHypothesis( hypo );
601 for( int i = 0; i < meshList.size(); i++ )
602 RemoveHypothesisOrAlgorithmOnMesh( meshList[ i ], hypo );
606 catch(const SALOME::SALOME_Exception& S_ex)
609 SalomeApp_Tools::QtCatchCorbaException(S_ex);
610 res = SMESH::HYP_UNKNOWN_FATAL;
612 return res < SMESH::HYP_UNKNOWN_FATAL;
615 bool RemoveHypothesisOrAlgorithmOnMesh (_PTR(SObject) MorSM,
616 SMESH::SMESH_Hypothesis_ptr anHyp)
618 int res = SMESH::HYP_UNKNOWN_FATAL;
619 SUIT_OverrideCursor wc;
623 GEOM::GEOM_Object_var aShapeObject = SMESH::GetShapeOnMeshOrSubMesh(MorSM);
624 SMESH::SMESH_Mesh_var aMesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>(MorSM);
625 SMESH::SMESH_subMesh_var aSubMesh = SMESH::SObjectToInterface<SMESH::SMESH_subMesh>(MorSM);
627 if (!aSubMesh->_is_nil())
628 aMesh = aSubMesh->GetFather();
630 if (!aMesh->_is_nil()) {
631 if (aMesh->HasShapeToMesh() && !aShapeObject->_is_nil()) {
632 res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
633 if (res < SMESH::HYP_UNKNOWN_FATAL) {
634 _PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
636 SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
640 else if(!aMesh->HasShapeToMesh()){
641 res = aMesh->RemoveHypothesis(aShapeObject, anHyp);
642 if (res < SMESH::HYP_UNKNOWN_FATAL) {
643 _PTR(SObject) meshSO = SMESH::FindSObject(aMesh);
645 SMESH::ModifiedMesh(meshSO, false, aMesh->NbNodes()==0);
648 if (res > SMESH::HYP_OK) {
650 processHypothesisStatus(res, anHyp, false);
654 } catch(const SALOME::SALOME_Exception& S_ex) {
656 SalomeApp_Tools::QtCatchCorbaException(S_ex);
657 res = SMESH::HYP_UNKNOWN_FATAL;
660 return res < SMESH::HYP_UNKNOWN_FATAL;
663 SObjectList GetMeshesUsingAlgoOrHypothesis(SMESH::SMESH_Hypothesis_ptr AlgoOrHyp)
665 SObjectList listSOmesh;
666 listSOmesh.resize(0);
668 unsigned int index = 0;
669 if (!AlgoOrHyp->_is_nil()) {
670 _PTR(SObject) SO_Hypothesis = SMESH::FindSObject(AlgoOrHyp);
673 SMESHGUI::activeStudy()->studyDS()->FindDependances(SO_Hypothesis);
675 if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency number ="<<listSO.size());
676 for (unsigned int i = 0; i < listSO.size(); i++) {
677 _PTR(SObject) SO = listSO[i];
679 _PTR(SObject) aFather = SO->GetFather();
681 _PTR(SObject) SOfatherFather = aFather->GetFather();
682 if (SOfatherFather) {
683 if(MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): dependency added to list");
685 listSOmesh.resize(index);
686 listSOmesh[index - 1] = SOfatherFather;
693 if (MYDEBUG) MESSAGE("SMESHGUI::GetMeshesUsingAlgoOrHypothesis(): completed");
697 #define CASE2MESSAGE(enum) case SMESH::enum: msg = QObject::tr( "STATE_" #enum ); break;
698 QString GetMessageOnAlgoStateErrors(const algo_error_array& errors)
700 QString resMsg; // PAL14861 = QObject::tr("SMESH_WRN_MISSING_PARAMETERS") + ":\n";
701 for ( int i = 0; i < errors.length(); ++i ) {
702 const SMESH::AlgoStateError & error = errors[ i ];
703 const bool hasAlgo = ( strlen( error.algoName ) != 0 );
706 msg = QObject::tr( "STATE_ALGO_MISSING" );
708 switch( error.state ) {
709 CASE2MESSAGE( HYP_MISSING );
710 CASE2MESSAGE( HYP_NOTCONFORM );
711 CASE2MESSAGE( HYP_BAD_PARAMETER );
712 CASE2MESSAGE( HYP_BAD_GEOMETRY );
715 // apply args to message:
718 msg = msg.arg( error.algoName.in() );
720 msg = msg.arg( error.algoDim );
722 msg = msg.arg( QObject::tr( error.isGlobalAlgo ? "GLOBAL_ALGO" : "LOCAL_ALGO" ));
723 // %4 - hypothesis dim == algoDim
724 msg = msg.arg( error.algoDim );
726 if ( i ) resMsg += ";\n";
731 } // end of namespace SMESH