Isn't this a mistake?
Posted: 27 Feb 2024 8:21
Dear Thomas!
In the class core.cl ($(ProDir)pfc\) (Vip11) the following constants are declared:
It is known that one Millisecond is equal to 1000 Microseconds, but not 10,000.
Isn't this a mistake?
Best regards, Faddey.
In the class core.cl ($(ProDir)pfc\) (Vip11) the following constants are declared:
Code: Select all
constants
oneMicrosecond = 10. %,???? My comment
oneMillisecond = 1000 * oneMicrosecond. %,???? My comment
oneSecond = 1000 * oneMillisecond.
oneMinute = 60 * oneSecond.
oneHour = 60 * oneMinute.
oneDay = 24 * oneHour.
oneWeek = daysInWeek * oneDay.
% @short One second/minute in the 100ns resolution used by gmtTimeValue, localTimeValue and durationValue
%@end.
Isn't this a mistake?
Best regards, Faddey.