⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timing.cpp

📁 利用C
💻 CPP
字号:
// Copyright (C) 2003-2008 Anders Logg.// Licensed under the GNU LGPL Version 2.1.//// First added:  2003-12-21// Last changed: 2008-06-20#include <ctime>#include <dolfin/log/dolfin_log.h>#include "timing.h"namespace dolfin{  clock_t __tic_time;}using namespace dolfin;//-----------------------------------------------------------------------------void dolfin::tic(){  dolfin::__tic_time = clock();}//-----------------------------------------------------------------------------real dolfin::toc(){  clock_t __toc_time = clock();  real elapsed_time = ((real) (__toc_time - __tic_time)) / CLOCKS_PER_SEC;  return elapsed_time;}//-----------------------------------------------------------------------------real dolfin::tocd(){  real elapsed_time = toc();    cout << "Elapsed time: " << elapsed_time << " seconds" << endl;  return elapsed_time;}//-----------------------------------------------------------------------------real dolfin::time(){  clock_t __toc_time = clock();  return ((real) (__toc_time)) / CLOCKS_PER_SEC;}//-----------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -