diff options
| -rw-r--r-- | src/new_model.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/new_model.cpp b/src/new_model.cpp index 9d51ff5..a922a8f 100644 --- a/src/new_model.cpp +++ b/src/new_model.cpp @@ -252,7 +252,7 @@ int main (int argc, char *argv[]) {    int opt;    // take command line arguments -  while ((opt = getopt(argc, argv, "N:L:T:J:K:a:n:e:f:w:")) != -1) { +  while ((opt = getopt(argc, argv, "N:L:T:J:K:a:n:e:f:w:h:")) != -1) {      switch (opt) {        case 'N': // number of steps          N = (unsigned)atof(optarg); @@ -284,6 +284,9 @@ int main (int argc, char *argv[]) {        case 'w':          w = atoi(optarg);          break; +      case 'h': +        nh = atoi(optarg); +        break;        default:          exit(EXIT_FAILURE);      } | 
