Skip to content
Snippets Groups Projects
Commit c6083649 authored by Sebastian Ebert's avatar Sebastian Ebert
Browse files

current fix state

parent ab53ab36
No related branches found
No related tags found
No related merge requests found
......@@ -60,24 +60,24 @@ aspect IoPnExtension{
}
// tom
if (result > -1) {
// if (result > -1) {
for (ThresholdOutputMapping tom : tomList) {
if (tom.getValue() <= markedPlace.getNumBalloonMarking()) {
result = tom.getResult();
break;
}
}
}
// }
// rom
if (result > -1) {
// if (result > -1) {
for (RangeOutputMapping rom : romList) {
if ((rom.getLowerBound() <= markedPlace.getNumBalloonMarking()) && (rom.getUpperBound() >= markedPlace.getNumBalloonMarking())) {
result = rom.getResult();
break;
}
}
}
// }
// 0 (disabled Signal) is default
if (result == -1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment