Salome HOME
Algorithm of level of parallelism has been extended to more complex cases.
[modules/yacs.git] / src / engine / LinkedBlocPoint.hxx
index 8d977a17aa448dda8f02eada84d894092ac82fe1..185415ac4fdae342541a36318b6f861264686685 100644 (file)
@@ -32,14 +32,17 @@ namespace YACS
     class YACSLIBENGINE_EXPORT LinkedBlocPoint : public BlocPoint
     {
     public:
+      LinkedBlocPoint() = default;
       LinkedBlocPoint(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 ~LinkedBlocPoint();
     };
   }