Skip to content

Commit

Permalink
test for aliasing right from the start.
Browse files Browse the repository at this point in the history
  • Loading branch information
yanntm committed Mar 31, 2024
1 parent c6f92e6 commit 92dc76e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,12 @@ public Object startNoEx(IApplicationContext context) throws Exception {

// Now load properties from examination
reader.loadProperties(examination);

if (reader.getHLPN() != null) {
reader.getHLPN().testAliasing(doneProps);
} else if (reader.getSPN() != null){
reader.getSPN().testAliasing(doneProps);
}

// if (redForExamination != null) {
// if ("StateSpace".equals(examination) || "Liveness".equals(examination) || "QuasiLiveness".equals(examination) || "StableMarking".equals(examination))
// reader.createSPN(false, false);
Expand Down

0 comments on commit 92dc76e

Please sign in to comment.