build_blitzwave
をテンプレートにして作成
[
トップ
|
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
]
開始行:
#code(C){{
#include <sys/time.h>
}}
#code(C){{
#include <time.h>
}}
#code(C){{
double runTime() {
timeval t;
gettimeofday(&t, 0);
return double(t.tv_sec) + double(t.tv_usec)/double(10000...
}
}}
#code(C){{
double runTime() {
clock_t t;
t = clock();
return (double)(t/CLOCKS_PER_SEC);
}
}}
終了行:
#code(C){{
#include <sys/time.h>
}}
#code(C){{
#include <time.h>
}}
#code(C){{
double runTime() {
timeval t;
gettimeofday(&t, 0);
return double(t.tv_sec) + double(t.tv_usec)/double(10000...
}
}}
#code(C){{
double runTime() {
clock_t t;
t = clock();
return (double)(t/CLOCKS_PER_SEC);
}
}}
ページ名: