Skip to content

Commit

Permalink
added NuSMV-A welcome message
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesK committed May 23, 2016
1 parent aaa17db commit 613a1e5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 5 additions & 3 deletions NuSMV-2.6.0/NuSMV/code/nusmv/core/cinit/cinitVers.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,10 +237,12 @@ void CInit_BannerPrint_zchaff(FILE * file)
*/
static void cinit_banner_print(FILE* file, boolean is_linked)
{
fprintf(file, "*** This is %s %s (compiled on %s)\n",
NuSMVCore_get_tool_name(),
NuSMVCore_get_tool_version(),
fprintf(file, "*** This is NuSMV-A (compiled on %s)\n",
NuSMVCore_get_build_date());
fprintf(file, "*** NuSMV-A is an extension of %s %s\n",
NuSMVCore_get_tool_name(),
NuSMVCore_get_tool_version());
fprintf(file, "*** For more information on NuSMV-A see <http://github.com/hklarner/NuSMV-A>\n");
# ifdef NUSMV_LINKED_CORE_ADDONS
/* linked addons are printed only if not empty */
if (strcmp(NuSMVCore_get_linked_addons(), "") != 0) {
Expand Down
Binary file modified NuSMV-2.6.0/scripts/html2text.pyc
Binary file not shown.
4 changes: 1 addition & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@

### About NuSMV-a
`NuSMV-a` is an extension of `NuSMV 2.6.0` that adds the command line option `-a` for printing and saving the _accepting states_ of queries.
It was written as part of the bachelor studies at the Freie Universität Berlin.


It was written by Frederike Heinitz and Sarah Nee as part of a "software internship" which was supervised by Hannes Klarner at the Freie Universität Berlin.

### How to use the command line option `-a`

Expand Down

0 comments on commit 613a1e5

Please sign in to comment.