Skip to content

Commit

Permalink
Fixed wrong update to bounds file
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasHaas committed Oct 25, 2024
1 parent 536873b commit c875e5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dartagnan/src/main/java/com/dat3m/dartagnan/Dartagnan.java
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ private static void increaseBoundAndDump(List<Event> boundEvents, Configuration
csvPrinter.printRecord(entry);
} else {
final String[] content = entry.values();
content[0] = String.valueOf(loopId2UpdatedBound.get(entryId));
content[1] = String.valueOf(loopId2UpdatedBound.get(entryId));
csvPrinter.printRecord(Arrays.asList(content));
}
}
Expand Down

0 comments on commit c875e5c

Please sign in to comment.