Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
af3
AF3
Commits
c20916ec
Commit
c20916ec
authored
Sep 18, 2017
by
fortissBot
Browse files
fixed incorrectly resolved assertion.
refs 2413
parent
630b00ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
org.fortiss.af3.tools/trunk/src/org/fortiss/af3/tools/nusmv/run/NuSMVRunner.java
View file @
c20916ec
...
...
@@ -69,7 +69,7 @@ import org.fortiss.af3.tools.nusmv.textgen.NuSMVTextGenerator;
* @author ratiu
* @author $Author: ratiu $
* @version $Rev: 1270 $
* @ConQAT.Rating YELLOW Hash:
74FB313F996006CF8478E1F796DF9674
* @ConQAT.Rating YELLOW Hash:
ADADEC5158494810D6174B9756B112A9
*/
public
class
NuSMVRunner
extends
ToolRunnerBase
<
NuSMVFile
,
NuSMVResult
>
{
...
...
@@ -112,7 +112,7 @@ public class NuSMVRunner extends ToolRunnerBase<NuSMVFile, NuSMVResult> {
List
<
NuSMVResult
>
results
=
new
NuSMVResultBuilder
().
buildResults
(
rawResults
);
// if a result is missing there should have been an exception
if
(
results
.
size
()
=
=
specList
.
size
())
{
if
(
results
.
size
()
!
=
specList
.
size
())
{
List
<
String
>
log
=
new
ArrayList
<>();
log
.
add
(
"There was an exception. Number of results do no match the number of specifications."
);
throw
new
ModelCheckingException
(
log
);
...
...
Write
Preview
Supports
Markdown
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