- Added error message for option
-a: if only one filename is given, the error message will be "Filename for option -a is (null). You must set the filename before." instead of "Input file is (null). You must set the input file before."
- Added command line option
-afor printing initial, accepting and initial accepting states to the command line or a file specified by the user.
- Added
ddAc.cto sources andddAc.hto headers.
- Created file
ddAc.cwhich holds the functions for printing a bdd as a factored formula, based onCudd_DumpFactoredFormfrom the Cudd-Package.
- Created file
ddAc.h, the header file forddAc.c.
- Added
mcPrint.cto source files andmcPrint.hto header files.
- Added: in
Mc_CheckCTLSpec, the initial states and accepting states are stored in bdd_ptr's. - Added: calls
print_accepting_statesfunction if commandline option-ais set.
- Created file
mcAc.cwhich computes the initial accepting states and prints initial, accepting and initial accepting states to the standard output or to a file specified by the user.
- Created file
mcAc.h, the header file formcAc.c
- Added functions for print accepting states option:
set_print_acceptingsets the file name,get_print_acceptingreturns the file name specified by the user,reset_print_acceptingresets the filename to default ((char*) NULL).
- Added environment variable for the file name to be used with the option
-a. - Added default value for the option
-a. - Added function declarations for functions defined in
opt.c(set_print_accepting,get_print_accepting,reset_print_accepting).
- Registered command line option
-aas a generic option.
- Added support for option
-a.