Skip to content

Commit

Permalink
added correct check inbetween abstract states
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamZsofi committed Oct 17, 2022
1 parent 750291e commit b553dd6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ private static void addToReport(ItpRefutation refutation, Trace<XstsState<ExplSt
}
}
infeasibles.add(Tuple2.of(prunedStates, refutation));
System.out.println(refutation.get(refutation.getPruneIndex()));
}

private static void createReport(Collection<Trace<XstsState<ExplState>, XstsAction>> traces) {
Expand Down Expand Up @@ -125,6 +124,8 @@ private static void createReport(Collection<Trace<XstsState<ExplState>, XstsActi
// allapot fedest pontosan nezzuk, transition fedest csak annyira, hogy serulhetett-e
if(foundInfeasible) {
reportBuilder.append("There were infeasible traces found; transition coverage might be incomplete\n");
} else {
reportBuilder.append("Trace coverage is complete\n");
}

if(stateRefutations.isEmpty()) {
Expand Down

0 comments on commit b553dd6

Please sign in to comment.