Salome HOME
Issue CEA914-Access to nb of branches from the plugin.
[modules/yacs.git] / src / engine / OptimizerAlg.cxx
index e07048dd95d35da97511d019991a3cc902f92956..2d1e80b99143f206a0d2faf5202f23432e2668ce 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2006-2013  CEA/DEN, EDF R&D
+// Copyright (C) 2006-2014  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 // License as published by the Free Software Foundation; either
-// version 2.1 of the License.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -130,6 +130,15 @@ void OptimizerAlgBase::setError(const std::string & message)
   _errorMessage = (message.length() > 0) ? message : "Unknown error";
 }
 
+void OptimizerAlgBase::setNbOfBranches(int nbOfBranches)
+{
+  _nbOfBranches=nbOfBranches;
+}
+
+int OptimizerAlgBase::getNbOfBranches() const
+{
+  return _nbOfBranches;
+}
 
 OptimizerAlgASync::OptimizerAlgASync(Pool *pool):OptimizerAlgBase(pool)
 {