Chapter 13: time logical functions, 1 isequaltime(), 2 islesstime() – Teledyne LeCroy SAS_SATA Protocol Suite Verification Script Engine Reference Manual User Manual

Page 56: Chapter 13, Time logical functions, Qual

Advertising
background image


56

Chapter 13:

Time Logical Functions

This group of functions covers VSE capability to compare VSE time objects.

13.1 IsEqualTime()

Verifies whether one VSE time object is equal to the other VSE time object.


Format :

IsEqualTime (time1, time2)


Return values

Returns 1 if time_1 is equal to time_2. Returns 0 otherwise.

Parameters

time_1

VSE time object representing the first time interval


time_2

VSE time object representing the second time interval


Example

t1 = Time(100); t2 = Time(500);

If( IsEqualTime( t1, t2 ) ) DoSomething();

13.2 IsLessTime()

Verifies whether or not one VSE time object is less than the other VSE time object


Format :

IsLessTime (time1, time2)


Return values

Returns 1 if time_1 is less than time_2. Returns 0 otherwise.

Parameters

time_1

VSE time object representing the first time interval


time_2

VSE time object representing the second time interval


Example

t1 = Time(100); t2 = Time(500);

If( IsLessTime ( t1, t2 ) ) DoSomething();

Advertising