Skip to content

Commit

Permalink
Execute function should return an integer
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyzlj committed Oct 24, 2024
1 parent 5b40269 commit 5c49f22
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int InterFlow_IKW::Execute() {
"Please check the error message for more information");
}
}
//return 0;
return 0;
}

bool InterFlow_IKW::CheckInputSize(const char *key, int n) {
Expand Down Expand Up @@ -253,7 +253,6 @@ void InterFlow_IKW::Set1DData(const char *key, int n, float *data) {
throw ModelException(M_IKW_IF[0], "Set1DData", "Parameter " + s
+ " does not exist.");
}

}

void InterFlow_IKW::Get1DData(const char *key, int *n, float **data) {
Expand Down

0 comments on commit 5c49f22

Please sign in to comment.