Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
215 views

Tool for model checking large, distributed C++ projects such as KDE?

Is there a tool which can handle model checking large, real-world, mostly-C++, distributed systems, such as KDE? (KDE is a distributed system in the sense that it uses IPC, although typically all of ...
3
votes
5answers
552 views

What is your experience with software model checking?

What types of applications have you used model checking for? What model checking tool did you use? How would you summarize your experience w/ the technique, specifically in evaluating its ...
1
vote
1answer
90 views

Spin - Formal Verification

Has anyone have contact with model checking with this tool SPIN, even more any information of model checking (concurrent programs)
0
votes
0answers
14 views

Model check sequence of DNA [closed]

My question is that can i model check a sequence of DNA? And if i can can any one give me some pointers or give me some articles to start. I will use TLA for that. Thanks for the help guys if you need ...
0
votes
0answers
12 views

How to get the current value of a clock in UPPAAL and store it in an integer variable?

Could anyone tell me how to get the current value of the clock variable and store in an integer variable. I've tried k=t(where k is the integer and t is the clock), but it throws an "incompatible type ...
0
votes
1answer
45 views

How can I assign sequences to constants in the CONSTANTS section of a TLA+ configuration file?

I've tried CONSTANTS seq = <<5,6,7>> but TLC gives me a syntax error: Error: TLC found an error in the configuration file at line 1. It was expecting = or <- and didn't find ...