Merge lp:~tapaal-contributor/tapaal/engine-option-matrix-dev into lp:tapaal
Status: | Merged |
---|---|
Approved by: | Jiri Srba on 2020-08-14 |
Approved revision: | 1084 |
Merged at revision: | 1083 |
Proposed branch: | lp:~tapaal-contributor/tapaal/engine-option-matrix-dev |
Merge into: | lp:tapaal |
Diff against target: |
398 lines (+232/-86) 4 files modified
src/dk/aau/cs/model/tapn/TimedArcPetriNet.java (+9/-4) src/dk/aau/cs/model/tapn/TimedArcPetriNetNetwork.java (+7/-0) src/pipe/gui/EngineSupportOptions.java (+51/-0) src/pipe/gui/widgets/QueryDialog.java (+165/-82) |
To merge this branch: | bzr merge lp:~tapaal-contributor/tapaal/engine-option-matrix-dev |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Jiri Srba | 2020-08-03 | Approve on 2020-08-14 | |
Peter Haahr Taankvist (community) | Resubmit on 2020-08-13 | ||
Kenneth Yrke Jørgensen | 2020-08-03 | Approve on 2020-08-06 | |
Review via email:
|
Commit message
Implement engine option matrix, which tells which engines are available given certain features. This replaces a large if-else tree and makes it easier to extend if the engines start supporting new features.
- 1075. By Peter Taankvist <email address hidden> on 2020-08-04
-
merge with trunk
Jiri Srba (srba) wrote : | # |
Kenneth, I saw your comments and it was actually me who suggested to add the comments
for the true/false values. I think they are necessary for checking and making sure that
there is not any mistake. In the future, they should get updated should there be any change.
- 1078. By Peter Haahr Taankvist on 2020-08-05
-
Clean up and making members final/static
- 1079. By Peter Haahr Taankvist on 2020-08-05
-
Use max function when finding highest degree
Peter Haahr Taankvist (ptaank) wrote : | # |
Made the suggested changes, except for 2 comments. I left some comments in the diff.
Members are now static/final and I use the max function when calculating the highest degree.
Jiri Srba (srba) wrote : | # |
Open Fisher's protocol from examples and make the query AF true.
This branch offers UPPAAL: Optimized Standard Reduction that should
not be offered - compare with e.g. 3.6.1 released version.
Peter Haahr Taankvist (ptaank) wrote : | # |
Added option for a query with AF or EG and with net degree > 2.
Jiri Srba (srba) wrote : | # |
Please, remove the debugging information like:
4
UPPAAL: Optimized Broadcast Reduction
UPPAAL: Optimised Standard Reduction
4
UPPAAL: Standard Reduction
4
UPPAAL: Broadcast Reduction
4
UPPAAL: Broadcast Degree 2 Reduction
4
...
- 1084. By Peter Haahr Taankvist on 2020-08-14
-
Remove more debug lines
In general think it looks good, a sound beginning, but there is defenitly more work that can be done.
Added a few notes to the implementation.