diff options
author | 2023-10-04 01:27:34 +0800 | |
---|---|---|
committer | 2023-10-17 13:54:06 +0800 | |
commit | b6ea7502c67af360b309c6c296fe487fa3bf5d96 (patch) | |
tree | 93690b000515e3c0cc3fc8b252b8414114b31c83 /.gitignore | |
parent | 27772ba64bb8f49a9d9057acaed2e08d0f7cec68 (diff) | |
download | calendar-b6ea7502c67af360b309c6c296fe487fa3bf5d96.tar.gz calendar-b6ea7502c67af360b309c6c296fe487fa3bf5d96.zip |
输入年份,对去年十一月晦至今年十一月晦的节气和朔日计算排序
输入年份可进行节气与朔日排序
Moon longitude finishing. Sth is wrong with EI in moon longitude.
Successfully fixed the bug with EI & make sure the ShuoRi
节气与月份初步结合,给定年份可确认该年前后之节气与朔日
节气与朔日排序完成
Makefile added.
判断本年(两个冬至之间)是否置闰
时间节点存储与排序由vector改用链表
正确置闰。现测算起止为去年十二月朔至今年十一月晦
2025年冬至之后朔日计算有误,等待修正
2025年十一月朔在12.20,冬至12.21,在函数ShuoRi()里没有计算十二月朔
错误修复,1900-2100测试朔日/节气无误
链表改用单独的类实现。测试成功。
补充注释。执行平均时长由1.75s增长到2.05s
所有文件I/O获得的参数全部写入parameters.h,测试成功,总时间17s
忘记上传测试脚本test.sh了,补上
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -2,12 +2,20 @@ | |||
2 | * | 2 | * |
3 | #Unignore all with extensions | 3 | #Unignore all with extensions |
4 | !*.* | 4 | !*.* |
5 | # Unignore all makefiles named Makefile or makefile | ||
6 | !Makefile | ||
7 | !makefile | ||
5 | #Unignore all dirs | 8 | #Unignore all dirs |
6 | !*/ | 9 | !*/ |
7 | #Ignore swp | 10 | #Ignore swp |
8 | *.swp | 11 | *.swp |
9 | #Ignore res | 12 | #Ignore res |
10 | res.txt | 13 | res.txt |
14 | err.txt | ||
11 | push.sh | 15 | push.sh |
12 | test* | 16 | test* |
17 | !test.sh | ||
13 | *.o | 18 | *.o |
19 | #Ignore dir data/vsop87 | ||
20 | data/vsop87/* | ||
21 | data/vsop87 | ||