Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show simulator's progress on the table in the side panel #338

Merged
merged 1 commit into from
Sep 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/parsers/tlc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ class ModelCheckResultBuilder {
this.workersCount -= 1;
break;
case msg.TLC_PROGRESS_STATS:
case msg.TLC_PROGRESS_SIMU:
this.parseProgressStats(message.lines);
this.status = CheckStatus.SuccessorStatesComputing;
break;
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/tlcCodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export const TLC_COVERAGE_END = registerCode(2202, TlcCodeType.Ignore);
export const TLC_CHECKPOINT_RECOVER_END_DFID = registerCode(2203, TlcCodeType.Ignore);
export const TLC_PROGRESS_START_STATS_DFID = registerCode(2205, TlcCodeType.Ignore);
export const TLC_PROGRESS_STATS_DFID = registerCode(2206, TlcCodeType.Ignore);
export const TLC_PROGRESS_SIMU = registerCode(2209, TlcCodeType.Ignore);
export const TLC_PROGRESS_SIMU = registerCode(2209, TlcCodeType.Info);
export const TLC_FP_COMPLETED = registerCode(2211, TlcCodeType.Ignore);

export const TLC_LIVE_IMPLIED = registerCode(2212, TlcCodeType.Ignore);
Expand Down
Loading