Salome HOME
Correct small bug.
authorAnthony Geay <anthony.geay@edf.fr>
Fri, 13 Nov 2015 08:06:33 +0000 (09:06 +0100)
committerAnthony Geay <anthony.geay@edf.fr>
Fri, 13 Nov 2015 08:06:33 +0000 (09:06 +0100)
src/engine/Executor.cxx
src/engine/Executor.hxx

index b9dcfc38370c03d8e08c8022f9bed2ceac6dbcf1..ac80226829746b2fb4df76361ef763e8b48cde94 100644 (file)
@@ -75,7 +75,7 @@ using YACS::BASES::Semaphore;
 int Executor::_maxThreads(50);
 size_t Executor::_threadStackSize(1048576); // Default thread stack size is 1MB
 
-Executor::Executor():_nbOfConcurrentThreads(0), _semForMaxThreads(_maxThreads),_keepGoingOnFail(false),_DPLScopeSensitive(true)
+Executor::Executor():_nbOfConcurrentThreads(0), _semForMaxThreads(_maxThreads),_keepGoingOnFail(false),_DPLScopeSensitive(false)
 {
   _root=0;
   _toContinue = true;
index 87eb1115cd6d246635cd4ba290e28a9424cb0f71..e5fd86d288741b812994e86da85ee181d9673e94 100644 (file)
@@ -101,7 +101,7 @@ namespace YACS
       void RunB(Scheduler *graph,int debug=0, bool fromScratch=true);
       void setKeepGoingProperty(bool newVal) { _keepGoingOnFail=newVal; }
       bool getKeepGoingProperty() const { return _keepGoingOnFail; }
-      void setDPLScopeSensitive(bool newVal) { _DPLScopeSensitive=_DPLScopeSensitive; }
+      void setDPLScopeSensitive(bool newVal) { _DPLScopeSensitive=newVal; }
       bool getDPLScopeSensitive() const { return _DPLScopeSensitive; }
       YACS::ExecutionMode getCurrentExecMode();
       YACS::ExecutorState getExecutorState();