X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fengine%2FForkBlocPoint.hxx;h=f410b4f05368f550caa473895faf205460a1697e;hb=91945d98482a02a05a3f5df7511a4e5760db2a94;hp=97afd34e7c9789a9cd2573d5177e320ae19f0acc;hpb=e3255204c864201f5bc1aa040d4273ed2f44e8cd;p=modules%2Fyacs.git diff --git a/src/engine/ForkBlocPoint.hxx b/src/engine/ForkBlocPoint.hxx index 97afd34e7..f410b4f05 100644 --- a/src/engine/ForkBlocPoint.hxx +++ b/src/engine/ForkBlocPoint.hxx @@ -1,4 +1,4 @@ -// Copyright (C) 2015-2016 CEA/DEN, EDF R&D +// Copyright (C) 2015-2021 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 @@ -30,11 +30,17 @@ namespace YACS class YACSLIBENGINE_EXPORT ForkBlocPoint : public BlocPoint { public: + ForkBlocPoint() = default; ForkBlocPoint(const std::list& 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 >& zeMap) const; std::string getRepr() const; + void accept(PointVisitor *pv) override; + AbstractPoint *expandNonSimpleCaseOn(NotSimpleCasePoint *pathologicalPt, const std::set& uncatchedNodes) override; virtual ~ForkBlocPoint(); }; }