SNAP Library 6.0, User Reference  2020-12-09 16:24:20
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
TExeTm Class Reference

#include <tm.h>

Public Member Functions

 TExeTm ()
 
 TExeTm (const TExeTm &Tm)
 
TExeTmoperator= (const TExeTm &Tm)
 
void Tick ()
 
int GetTime () const
 
double GetSecs () const
 
int GetSecInt ()
 
const char * GetStr () const
 
TStr GetStr2 () const
 
const char * GetTmStr () const
 

Static Public Member Functions

static char * GetCurTm ()
 

Private Attributes

int LastTick
 

Detailed Description

Definition at line 355 of file tm.h.

Constructor & Destructor Documentation

TExeTm::TExeTm ( )
inline

Definition at line 359 of file tm.h.

359 : LastTick(0) { Tick(); }
int LastTick
Definition: tm.h:357
void Tick()
Definition: tm.h:364
TExeTm::TExeTm ( const TExeTm Tm)
inline

Definition at line 360 of file tm.h.

360 : LastTick(Tm.LastTick) { }
int LastTick
Definition: tm.h:357

Member Function Documentation

static char* TExeTm::GetCurTm ( )
inlinestatic

Definition at line 374 of file tm.h.

374 { static TStr TmStr; TmStr=TSecTm::GetCurTm().GetTmStr(); return TmStr.CStr(); }
Definition: dt.h:412
static TSecTm GetCurTm()
Definition: tm.cpp:697
TStr GetTmStr() const
Definition: tm.cpp:520
char * CStr()
Definition: dt.h:479
int TExeTm::GetSecInt ( )
inline

Definition at line 367 of file tm.h.

367 { return TFlt::Round(GetSecs()); }
static int Round(const double &Flt)
Definition: dt.h:1432
double GetSecs() const
Definition: tm.h:366
double TExeTm::GetSecs ( ) const
inline

Definition at line 366 of file tm.h.

366 {return double(clock()-LastTick)/double(CLOCKS_PER_SEC);}
int LastTick
Definition: tm.h:357
const char* TExeTm::GetStr ( ) const
inline

Definition at line 368 of file tm.h.

368 {return GetTmStr();}
const char * GetTmStr() const
Definition: tm.h:370
TStr TExeTm::GetStr2 ( ) const
inline

Definition at line 369 of file tm.h.

369 {return GetTmStr();}
const char * GetTmStr() const
Definition: tm.h:370
int TExeTm::GetTime ( ) const
inline

Definition at line 365 of file tm.h.

365 {return int(clock()-LastTick);}
int LastTick
Definition: tm.h:357
const char* TExeTm::GetTmStr ( ) const
inline

Definition at line 370 of file tm.h.

370  { static char TmStr[32];
371  if (GetSecs() < 60) { sprintf(TmStr, "%.2fs", GetSecs()); }
372  else if (GetSecs() < 3600) { sprintf(TmStr, "%02dm%02ds", int(GetSecs())/60, int(GetSecs())%60); }
373  else { sprintf(TmStr, "%02dh%02dm", int(GetSecs())/3600, (int(GetSecs())%3600)/60); } return TmStr; }
double GetSecs() const
Definition: tm.h:366
TExeTm& TExeTm::operator= ( const TExeTm Tm)
inline

Definition at line 361 of file tm.h.

361  {
362  LastTick=Tm.LastTick; return *this;}
int LastTick
Definition: tm.h:357
void TExeTm::Tick ( )
inline

Definition at line 364 of file tm.h.

364 {LastTick=(int)clock();}
int LastTick
Definition: tm.h:357

Member Data Documentation

int TExeTm::LastTick
private

Definition at line 357 of file tm.h.


The documentation for this class was generated from the following file: