Salome HOME
Algorithm of level of parallelism has been extended to more complex cases.
[modules/yacs.git] / src / engine / ForkBlocPoint.hxx
index fb44b52dc2c20d8ceeca8411afd37e638330a6eb..05f82221213c7b28c9b0d780f3e8897fcfeabd92 100644 (file)
@@ -30,14 +30,17 @@ namespace YACS
     class YACSLIBENGINE_EXPORT ForkBlocPoint : public BlocPoint
     {
     public:
+      ForkBlocPoint() = default;
       ForkBlocPoint(const std::list<AbstractPoint *>& nodes, AbstractPoint *father);
-      Node *getFirstNode();
-      Node *getLastNode();
+      AbstractPoint *deepCopy(AbstractPoint *father) const override;
+      Node *getFirstNode() override;
+      Node *getLastNode() override;
       int getMaxLevelOfParallelism() const;
       void getWeightRegardingDPL(ComplexWeight *weight);
       void partitionRegardingDPL(const PartDefinition *pd, std::map<ComposedNode *, YACS::BASES::AutoRefCnt<PartDefinition> >& zeMap) const;
       std::string getRepr() const;
       void accept(PointVisitor *pv) override;
+      AbstractPoint *expandNonSimpleCaseOn(NotSimpleCasePoint *pathologicalPt, const std::set<Node *>& uncatchedNodes) override;
       virtual ~ForkBlocPoint();
     };
   }