Skip to main content

valueIsFinite

Short summary

This assertion method checks if the current value is finite (NOT (infinity OR -inifinity)), for details check IEEE 754

Parameters

NameTypeCommentKind
currentValueREALcurrent value to checkinput
messageAssertMessagemessage if the assertion is falseinput

Code

Declaration

METHOD valueIsFinite
VAR_INPUT
(* current value to check *)
currentValue :REAL;
(* message if the assertion is false *)
message :AssertMessage;
END_VAR

Implementation

IF (THIS^.isValueInfinite(currentValue)) THEN
THIS^.assertionWasWrong(message, THIS^.getDebugInfo('valueIsFinite'));
END_IF