Questions tagged [nusmv]

NuSMV is a model checking software free for non-commercial and academic purposes. It is used to verify and prove hardware and software.

NuSMV is a model checking software free for non-commercial and academic purposes. It is used to verify and prove hardware and software.

93 questions
0
votes
0 answers

NuSMV command not found Mac

I downloaded the NuSMV binary (MacOSX Darwin (x86) 64-bit). After I unpacked it, I traveled to the bin folder in terminal. I tried the command NuSMV -int, but I get an error : -bash: NuSMV: command not found I tried to temporarily alter the path…
Frank
  • 952
  • 1
  • 9
  • 23
0
votes
0 answers

How to install and run NuSMV on Mac?

I have to install NuSMV on my mac and i don't know exactly how to install it. There are two files available on NuSMV website, one is SourceCode and other is binary. Which one should i install? And after choosing what should i do, Like should i…
Abu Bäkr
  • 313
  • 1
  • 2
  • 10
0
votes
2 answers

Batch file doesn't execute completely after other .exe is executed

I'm trying to create batch file which should have this commands: cd "c:\Program files\NuSMV\2.5.2\bin\" NuSMV -int short.smv go pick_state -r print_current_state -v simulate -r 3 show_traces -t show_traces -v The problem I encounter is this: after…
user433947
  • 909
  • 3
  • 9
  • 8
0
votes
1 answer

Execution time of properties checking

I want to know how to calculate the execution time of CTL/LTL properties checking in NuSMV model checker. ... thanks Blockquote .... ....
sam
  • 53
  • 4
0
votes
0 answers

NuSMV on Mac -int command option not found

I'm trying to run NuSMV on Mac and I can run it normally but when I need to use the interactive mode the -int option gets an error - The command line option "–int" is unknown. Has anybody else had this issue?
A Loakes
  • 33
  • 1
  • 5
0
votes
0 answers

installing Nusmv on linux

I have searched in vain to see how to run NuSMV on ubuntu 16.04 .I have installed NuSMV binaries ,I have an executable NuSMV in bin folder but it won't run.I type NuSMV -help but cmd reports NuSMV:command not found.Any idea on how to run NuSMV/or is…
sak18
  • 101
  • 13
0
votes
0 answers

Read a file in NuSMV

I want to implement a transition system in NuSMV which is specified in a .txt file which I want the tool to read and then build the TS from it. The file format is : 6 1 2 2 3 3 4 4 5 5 6 This is a particular example where 6 is the total number of…
user3598542
  • 61
  • 1
  • 10
0
votes
1 answer

State space size of state of the art model checkers

What is the approximate maximum state space size of modern model checkers, like NuSMV. I do not need an exact number but some state size value, where the run time is still acceptable (say a few weeks). What kind of improvements, beyond symbolic…
Cryptostasis
  • 1,166
  • 6
  • 15
0
votes
1 answer

Running NuSMV 2.6 on Windows

I have downloaded the files from the NuSMV website, but i can't actually run the application on my system. Any leads will be appreciated. The file contains the folders - bin,lib,share,include
Reddy90
  • 79
  • 6
0
votes
0 answers

Access NuSMV from java

How can I access NuSMV as a model checker from java? I want to use a library to call NuSMV and read a .smv file, check an LTLSPEC and return the satisfaction massage or counterexample as a result. I have found nusmv-tools, which is an Eclipse-based…
mirzanahal
  • 167
  • 2
  • 12
0
votes
2 answers

NuSMV not getting installed

I am not able to install NuSMV-2.6.0-win64 on windows 10 OS.I have downloaded this successfully,but am not able to install from 'bin'folder,which has been extracted.
0
votes
1 answer

How can I define global constants in NuSMV?

I don't know how to declare global constants in NuSMV, in a way that is similar to #define n 5 in C. How can I do that in NuSMV?
0
votes
1 answer

NuSMV Realtime CTL

I'm using NuSMV and i'm trying to write a Real Time CTL property. I would like to know if there is a way to set the steps from a state, like: ((s.state = on) ABG (0..5 s.state = off)) Is read as: if (s.state=on) is true, from this state and for…
Desmond
  • 9
  • 1
  • 5
0
votes
1 answer

How can i change psuedo-code to NuSMV code?

My professor decide to give us math student a code to change into NuSMV and i can't seem to find anywhere else for help and i read the textbook it like 6 pages only and only describe what certain property does. Module main is an example of NuSMV…
Darkflame
  • 79
  • 2
  • 11
0
votes
1 answer

Bug in NuSMV Model Checking?

Suppose I have following structure M = (S, R, L) where S = {s0, s1, s2} is the set of possible states, R is a transition relation such that: s0 -> s1, s0 -> s2, s1 -> s0, s1 -> s2, and s2 -> s2, and L is the labeling function for each state defined…
Iqazra
  • 419
  • 1
  • 3
  • 11