Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
general
stups
ProB Rodin Plugin
Commits
14535a6e
Commit
14535a6e
authored
Nov 12, 2020
by
Michael Leuschel
Browse files
rename nodes to states in model checking results
parent
b8e610c0
Changes
2
Hide whitespace changes
Inline
Side-by-side
de.prob.ui/src/de/prob/ui/eventb/ModelCheckingFinishedListener.java
View file @
14535a6e
...
...
@@ -193,12 +193,12 @@ public class ModelCheckingFinishedListener extends JobChangeAdapter {
private
String
createOkButNotFinishedResult
()
{
return
"No errors found, but not all possible "
+
"
nod
es have been visited (Due to animation parameter restrictions)."
;
+
"
stat
es have been visited (Due to animation parameter restrictions)."
;
}
private
String
createOkResult
()
{
return
"No errors found\n"
+
"Model Checking finished, all
nod
es visited.\n"
;
+
"Model Checking finished, all
stat
es visited.\n"
;
}
private
void
replayErrorTrace
()
throws
ProBException
{
...
...
@@ -222,7 +222,7 @@ public class ModelCheckingFinishedListener extends JobChangeAdapter {
private
void
appendCoverageStatistics
(
final
ComputeCoverageResult
coverage
,
final
String
PID
,
final
MultiStatus
info
)
{
info
.
add
(
new
Status
(
IStatus
.
INFO
,
PID
,
1
,
"Coverage statistics:"
,
null
));
info
.
add
(
new
Status
(
IStatus
.
INFO
,
PID
,
1
,
"Total Number of
Nod
es:"
info
.
add
(
new
Status
(
IStatus
.
INFO
,
PID
,
1
,
"Total Number of
Stat
es:"
+
coverage
.
getTotalNumberOfNodes
(),
null
));
info
.
add
(
new
Status
(
IStatus
.
INFO
,
PID
,
1
,
"Total Number of Transitions:"
...
...
de.prob.ui/src/de/prob/ui/ltl/LtlStrings.properties
View file @
14535a6e
...
...
@@ -12,9 +12,9 @@ ltlHelpText=About LTL Checking\n\nLTL Syntax:\n\
-use WEF or SEF to search for paths that are weakly or strongly fair w.r.t. all transitions.
ltlResultIncompleteTitle
=
Modelchecking not completed
ltlResultIncompleteMessage
=
No counterexample has been found, but not all possible
nod
es have been visited (Due to animation parameter restrictions).
ltlResultIncompleteMessage
=
No counterexample has been found, but not all possible
stat
es have been visited (Due to animation parameter restrictions).
ltlResultOkTitle
=
Modelchecking successfully finished
ltlResultOkMessage
=
No counterexample has been found, all
nod
es have been visited.
ltlResultOkMessage
=
No counterexample has been found, all
stat
es have been visited.
ltlResultCounterexampleTitle
=
Counterexample found
ltlResultCounterexampleMessage
=
A counterexample has been found. It will be shown in the LTL view.
ltlResultNoStartTitle
=
No initialisation found
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment