X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/blast.git/blobdiff_plain/0d3590739ff5a4ca9e87c052ac142f5d1d3a68ab..18fecf25efe710631fabecbb9f689c2997fdfe18:/Graph.h diff --git a/Graph.h b/Graph.h index 7be35c2..e7ff3e2 100644 --- a/Graph.h +++ b/Graph.h @@ -10,7 +10,8 @@ class GroupBlock; class ReferenceBlock; class FunctionalBlock; class AbstractInterface; - +#include "Exception.h" +class Exception; using namespace std; using namespace Qt; @@ -27,7 +28,7 @@ public: // methods for group blocks GroupBlock* createChildGroupBlock(GroupBlock* parent); - bool removeGroupBlock(GroupBlock *group); + void removeGroupBlock(GroupBlock *group); GroupBlock* getGroupBlockByName(QString name); // methods for functional blocks @@ -43,9 +44,19 @@ public: bool removeSourceBlock(FunctionalBlock* block); // others - QList getOutsideInterfaces(); - + QList getOutsideInterfaces(); + /*! + * \brief createPatterns + * createPatterns() crosses the graph and for each functional block, it computes + * the consumptionPattern, the productionPattern, the production counter and delta + * using the parameters fo the block. + */ + void createPatterns() throw(Exception); + void resetPatternComputed(); + void computeOutputPatterns(int nbExec) throw(Exception); + void generateVHDL(const QString& path) throw(Exception); + private: GroupBlock* topGroup; QList groups; //! usefull to avoid recursive methods to find a particular group.