3 Star 0 Fork 2

src-openEuler/fastdb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fix-error.patch 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
PengLei 提交于 2021-12-14 10:57 . add fastdb
diff -uprN fastdb/examples/testtimeseries.cpp fastdb-test/examples/testtimeseries.cpp
--- fastdb/examples/testtimeseries.cpp 2013-02-18 03:47:32.000000000 +0800
+++ fastdb-test/examples/testtimeseries.cpp 2021-12-14 11:17:17.960619100 +0800
@@ -47,8 +47,8 @@ REGISTER_TEMPLATE(DailyBlock);
REGISTER(Stock);
inline int random(unsigned mod) { return rand() % mod; }
-inline float fmax(float x, float y) { return x > y ? x : y; }
-inline float fmin(float x, float y) { return x < y ? x : y; }
+inline float ffmax(float x, float y) { return x > y ? x : y; }
+inline float ffmin(float x, float y) { return x < y ? x : y; }
int main(int argc, char* argv[])
{
@@ -66,8 +66,8 @@ int main(int argc, char* argv[])
quote.timestamp = i;
quote.open = (float)random(10000)/100;
quote.close = (float)random(10000)/100;
- quote.high = fmax(quote.open, quote.close);
- quote.low = fmin(quote.open, quote.close);
+ quote.high = ffmax(quote.open, quote.close);
+ quote.low = ffmin(quote.open, quote.close);
quote.volume = random(1000);
proc.add(stockId, quote); // add new element in time series
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/fastdb.git
git@gitee.com:src-openeuler/fastdb.git
src-openeuler
fastdb
fastdb
master

搜索帮助