~tapaal-contributor/tapaal/unselect-objects-after-undo-1894108

« back to all changes in this revision

Viewing changes to src/pipe/gui/VerifyDTAPNEngineOptions.java

merged in lp:~tapaal-contributor/tapaal/refactor-remove-queries removing queires in a unified way by calling the engine options

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package pipe.gui;
 
2
 
 
3
public class VerifyDTAPNEngineOptions extends EngineSupportOptions {
 
4
 
 
5
    public VerifyDTAPNEngineOptions() {
 
6
        super(
 
7
            "TAPAAL: Discrete Engine (verifydtapn)",
 
8
            true,//  support fastest trace
 
9
            true,// support deadlock with net degree 2 and (EF or AG)
 
10
            true,//  support deadlock with EG or AF
 
11
            true,// support deadlock with inhibitor arcs
 
12
            true, //support weights
 
13
            true, //support inhibitor arcs
 
14
            true,// support urgent transitions
 
15
            true,// support EG or AF
 
16
            false,// support strict nets
 
17
            true,//  support timed nets/time intervals
 
18
            true,// support deadlock with net degree > 2
 
19
            true, //support games
 
20
            true, //support EG or AF with net degree > 2);
 
21
            false //support for nested quantification
 
22
        );
 
23
    }
 
24
}