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

Private GIT Repository
changed VHDL converter
[blast.git] / ReferenceBlock.cpp
index 12db4b4a9bc683b99cddea0c3ed0724e7d7e4ae2..a31db67b0f28c807c21b910f6cb979037f70876a 100644 (file)
@@ -567,7 +567,11 @@ QDataStream& operator>>(QDataStream &in, ReferenceBlock &b) {
   return in;
 }
 
-bool ReferenceBlock::computeOutputPattern(int nbExec) {
+void ReferenceBlock::checkInputPatternCompatibility()  throw(Exception){
+  throw(Exception(INVALID_REFBLOCK_USE));
+}
+
+void ReferenceBlock::computeOutputPattern(int nbExec)  throw(Exception) {
   // does strictly nothing
-  return false;
+  throw(Exception(INVALID_REFBLOCK_USE));  
 }