perftimer.cpp
来自「遗传和蚁群算法改进源代码,对于研究仿真算法非常有用.可以深刻了解遗传和蚁群算法原」· C++ 代码 · 共 39 行
CPP
39 行
// CPerfTimer - a simple Win32 performance counter wrapper
// by Dean Wyant dwyant@mindspring.com
#include "stdafx.h"
#include "PerfTimer.h"
// Declare and initialize static member vars that get set only once and never change
__int64 CPerfTimer::m_Freq = 0;
__int64 CPerfTimer::m_Adjust = 0;
// All functions defined inline for speed. After all, the performance counter is
// supposed to be able to time very short events fairly accurately.
BOOL CPerfTimer::IsSupported()
{ // Returns FALSE if performance counter not supported.
// Call after constructing at least one CPerfTimer
return (m_Freq > 1);
}
const double CPerfTimer::Resolution()
{ // Returns timer resolution in seconds
return 1.0/(double)m_Freq;
}
const double CPerfTimer::Resolutionms()
{ // Returns timer resolution in milliseconds
return 1000.0/(double)m_Freq;
}
const double CPerfTimer::Resolutionus()
{ // Returns timer resolution in microseconds
return 1000000.0/(double)m_Freq;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?