Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ProB Rodin Plugin
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
ProB Rodin Plugin
Commits
2b721fad
Commit
2b721fad
authored
10 years ago
by
Michael Leuschel
Browse files
Options
Downloads
Patches
Plain Diff
no longer show trace of state ids in ModelChecking result dialog
parent
d4b780f2
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
de.prob.ui/src/de/prob/ui/eventb/ModelCheckingFinishedListener.java
+3
-2
3 additions, 2 deletions
.../src/de/prob/ui/eventb/ModelCheckingFinishedListener.java
with
3 additions
and
2 deletions
de.prob.ui/src/de/prob/ui/eventb/ModelCheckingFinishedListener.java
+
3
−
2
View file @
2b721fad
...
@@ -134,8 +134,9 @@ public class ModelCheckingFinishedListener extends JobChangeAdapter {
...
@@ -134,8 +134,9 @@ public class ModelCheckingFinishedListener extends JobChangeAdapter {
StringBuffer
sb
=
new
StringBuffer
();
StringBuffer
sb
=
new
StringBuffer
();
sb
.
append
(
"Invariant violation found.\n"
);
sb
.
append
(
"Invariant violation found.\n"
);
sb
.
append
(
"ProB has detected a state that violates the invariant.\n"
);
sb
.
append
(
"ProB has detected a state that violates the invariant.\n"
);
sb
.
append
(
"The following is the trace that led to the violation:\n"
);
// no longer show trace of state ids to user; not very useful
appendTrace
(
trace
,
sb
);
//sb.append("The following is the trace that led to the violation:\n");
//appendTrace(trace, sb);
return
sb
.
toString
();
return
sb
.
toString
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment