]> AND Private Git Repository - blast.git/blobdiff - Graph.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
modifying pattern methods to throw exceptions
[blast.git] / Graph.h
diff --git a/Graph.h b/Graph.h
index f3e9923ecacd6f391e86c4855c8b45f1266cedb9..03d188265d04efd771bcb56f2479a72bc8e3e8a6 100644 (file)
--- a/Graph.h
+++ b/Graph.h
@@ -10,7 +10,7 @@ class GroupBlock;
 class ReferenceBlock;
 class FunctionalBlock;
 class AbstractInterface;
-
+class Exception;
 using namespace std;
 using namespace Qt;
 
@@ -45,12 +45,12 @@ public:
   // others
   QList<AbstractInterface *> getOutsideInterfaces();
   /*!
-   * \brief initPatterns
-   * initPatterns() crosses the graph and for each functional block, it computes
+   * \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.
    */
-  bool createPatterns();
+  void createPatterns() throw(Exception);
   void resetPatternComputed();
   bool computeOutputPatterns(int nbExec);