Skip to content

Latest commit

 

History

History
59 lines (30 loc) · 3.09 KB

changelog.md

File metadata and controls

59 lines (30 loc) · 3.09 KB

All files created or changed for extension print accepting states

  • 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 -a for printing initial, accepting and initial accepting states to the command line or a file specified by the user.
  • Added ddAc.c to sources and ddAc.h to headers.
  • Created file ddAc.c which holds the functions for printing a bdd as a factored formula, based on Cudd_DumpFactoredForm from the Cudd-Package.
  • Created file ddAc.h, the header file for ddAc.c.
  • Added mcPrint.c to source files and mcPrint.h to header files.
  • Added: in Mc_CheckCTLSpec, the initial states and accepting states are stored in bdd_ptr's.
  • Added: calls print_accepting_states function if commandline option -a is set.
  • Created file mcAc.c which 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 for mcAc.c
  • Added functions for print accepting states option: set_print_accepting sets the file name, get_print_accepting returns the file name specified by the user, reset_print_accepting resets 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 -a as a generic option.
  • Added support for option -a.