- Modified a number of things related to the attack analysis tools.

* removed <term> wrappers
  * added <const> wrappers
  * removed <role><term> construct, now <rolename>R</rolename>
    constructs.
  * added <variables> section.
  * variable substitutions are followed through in runs. Thus, only
    unbound variables occur in the semitrace.
  * added the untested claims back in, so that all events in a
    role/semitrace are now shown. Note that they can be disabled
    again by using the new '-H' switch.
This commit is contained in:
ccremers
2005-06-02 08:25:45 +00:00
parent f8bafdcd60
commit 01124e2104
4 changed files with 155 additions and 25 deletions

View File

@@ -295,6 +295,20 @@ switcher (const int process, const System sys, int index)
}
}
if (detect ('H', "human-readable", 0))
{
if (!process)
{
helptext ("-H,--human-readable",
"try to make the output human-friendly (e.g. in XML)");
}
else
{
sys->switchHuman = true;
return index;
}
}
/* ==================
* Modelchecker only
*/