Basic Operation Layer (BasicLib)


exectime
to get an execution time of a computation process (in milli second)



FUNCTIONS

void - exectime(long initialtime)
void - exectime(long initialtime, long finishtime)




EXAMPLES

Example VectorLib vlib=new VectorLib();
long t1=vlib.cputime();
.
.
.
vlib.exectime(t1);
Output (execution time in milli second)


Example VectorLib vlib=new VectorLib();
long t1=vlib.cputime();
.
.
.
long t2=vlib.cputime();
vlib.exectime(t1, t2);
Output (execution time in milli second)