Update to v2.2.0

This commit is contained in:
jomjol
2020-09-27 08:19:23 +02:00
parent 5a98b3d0bb
commit cefe125304
9 changed files with 492 additions and 45 deletions

View File

@@ -445,7 +445,7 @@ float ClassFlowPostProcessing::checkDigitConsistency(float input, int _decilamsh
olddigit = ((int) zw) % 10;
if (aktdigit != olddigit) {
if (olddigit_before >= aktdigit_before) // stelle vorher hat noch keinen Nulldurchgang --> nachfolgestelle sollte sich nicht verändern
if (olddigit_before <= aktdigit_before) // stelle vorher hat noch keinen Nulldurchgang --> nachfolgestelle sollte sich nicht verändern
{
input = input + ((float) (olddigit - aktdigit)) * pow(10, pot); // Neue Digit wird durch alte Digit ersetzt;
}