- More cleaning of switches.

This commit is contained in:
ccremers 2006-02-22 08:47:22 +00:00
parent 5ddcdfed22
commit 10b6793d97

View File

@ -511,8 +511,11 @@ switcher (const int process, int index, int commandline)
{ {
if (!process) if (!process)
{ {
helptext ("-C, --class", if (switches.expert)
"generate full class (show uninstantiated variables in state output)"); {
helptext ("-C, --class",
"generate full class (show uninstantiated variables in state output)");
}
} }
else else
{ {
@ -525,8 +528,11 @@ switcher (const int process, int index, int commandline)
{ {
if (!process) if (!process)
{ {
helptext ("-s, --state-space", if (switches.expert)
"ignore any existing claims and add 'reachable' claims. Generate full state space classes."); {
helptext ("-s, --state-space",
"ignore any existing claims and add 'reachable' claims. Generate full state space classes");
}
} }
else else
{ {
@ -612,7 +618,7 @@ switcher (const int process, int index, int commandline)
if (!process) if (!process)
{ {
helptext ("-r, --max-runs=<int>", helptext ("-r, --max-runs=<int>",
"maximum number of runs in the system [5]. Set to 0 for unbounded search"); "maximum number of runs in the system [defaults to 5]");
} }
else else
{ {
@ -634,7 +640,7 @@ switcher (const int process, int index, int commandline)
if (!process) if (!process)
{ {
helptext (" --unbounded", helptext (" --unbounded",
"Do not bound the number of runs in the state space."); "Do not bound the number of runs in the state space");
} }
else else
{ {
@ -1093,7 +1099,10 @@ switcher (const int process, int index, int commandline)
{ {
if (!process) if (!process)
{ {
helptext (" --plain", "disable color terminal output"); if (switches.expert)
{
helptext (" --plain", "disable color terminal output");
}
} }
else else
{ {