Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
300 views

Is there a tool to model/simulate software concurrency?

Is there a good tool out there that can model an application concurrency/locking scheme in a graphical way and that can simulate some of the aspects? I know that Petri nets can be used for that more ...
3
votes
3answers
165 views

Concurrent code analyzer

I was wondering if there is any framework or application(app)/program out there that can analyze the concurrency of any java code? If the tool knows all the implementations of the jre shipped classes ...
3
votes
1answer
149 views

How to convert an activity diagram to a petrinet, synthesize it and then analyse it?

I am doing a project on Petri nets. I have generated an activity diagram (in the .xmi format) using the UML tool Umbrello. I need to convert it to a Petri net and then synthesize it using the tool ...
3
votes
2answers
365 views

Petri net code generation

Is there any software for drawing a petri net and generate any source code from there? The source code could be in any already known programming language,(that would be desirable).. but other option ...
1
vote
0answers
12 views

Perti-net editor

1-Can anybody introduce some modern Petri-net editor and compare theme? currently I am using WoPeD. 2-Is there any UML tools that also support Petrinet?
1
vote
1answer
165 views

How does rule-based verification with Petri nets work and what is this good for?

A friend just pointed me out to an new development in computer science called "rule based verification with Petri nets". He's not a computer guy but an artist, so I wonder if that's really something ...
0
votes
0answers
19 views

Using semantics with petri nets

I would like to know if it is possible to annotate a petri net in cpntools to a concept in an RDF? If yes, I would appreciate a sample example. Thank you.
0
votes
1answer
44 views

How to implement “binding” for coloured petri net in Java?

I'm implementing a coloured petri net in Java. It's kind of a finite state automata. The problem is that I don't know how to implement "binding". In other words, colors should be assigned to places ...
0
votes
1answer
28 views

Who knows an algorithm for k soundness verification?

I have a workflow net (petri net) and I have to implement an algorithm to verify if it is k sound correct.
0
votes
1answer
68 views

Is there a PetriNet tool with an IPC interface?

I'm looking for a quality tool to draw PetriNets with that has an interface to connect to my own application. I have a PetriNet abstraction layer, and instantiated a fairly large Net. Now I want to ...
0
votes
3answers
108 views

Deadlock without cycle

if I draw a graph that symbolizes all possible calls to blocking functions (java synchronized methods) and I haven't got any cycle in this graph, can I be sure that deadlocks are imposible. Do ...
0
votes
1answer
56 views

Evaluation nets web-based editor: searching for the toolkit

My goal is to implement web based editor for evaluation nets (extension of Petri nets), something like that swing app, language - Java. However I've never implemented rich web applications like that, ...