Skip to content

Commit

Permalink
Small fix for TM output
Browse files Browse the repository at this point in the history
  • Loading branch information
andrianov committed Mar 5, 2021
1 parent d2b3bec commit 3491764
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/org/sosy_lab/cpachecker/cpa/usage/ErrorTracePrinter.java
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ protected List<CFAEdge> getPath(UsageInfo usage) {
logger.log(Level.SEVERE, "Cannot compute path for: " + usage);
return ImmutableList.of();
}
return aPath.getInnerEdges();
// Full path for effects
return aPath.getFullPath();
}
}

Expand Down

0 comments on commit 3491764

Please sign in to comment.