Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 1bc1e05a authored by BOUCHERIE Raphael's avatar BOUCHERIE Raphael
Browse files

n_range option

parent 60f9e36e
No related branches found
No related tags found
1 merge request!53Timing/options
...@@ -597,9 +597,9 @@ parse_arguments(int *_argc, char ***_argv, int *iparam, int *start, int *stop, i ...@@ -597,9 +597,9 @@ parse_arguments(int *_argc, char ***_argv, int *iparam, int *start, int *stop, i
case 'a' : iparam[IPARAM_RHBLK ] = atoi(optarg); break; case 'a' : iparam[IPARAM_RHBLK ] = atoi(optarg); break;
case 'P' : iparam[IPARAM_P ] = atoi(optarg); break; case 'P' : iparam[IPARAM_P ] = atoi(optarg); break;
case 'M' : iparam[IPARAM_MODE ] = atoi(optarg); break; case 'M' : iparam[IPARAM_MODE ] = atoi(optarg); break;
case 'b' : iparam[IPARAM_NB ] = atoi(optarg); case 'n' : iparam[IPARAM_NB ] = atoi(optarg); break;
iparam[IPARAM_MB ] = atoi(optarg); break; case 'm' : iparam[IPARAM_MB ] = atoi(optarg); break;
case 'n' : get_range(optarg, start, stop, step); break; case 'N' : get_range(optarg, start, stop, step); break;
case 'h' : show_help(argv[0]); break; case 'h' : show_help(argv[0]); break;
default: default:
break; break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment