Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/para-diso/assert-approx
assert for floating point value
https://github.com/para-diso/assert-approx
assert c
Last synced: about 1 month ago
JSON representation
assert for floating point value
- Host: GitHub
- URL: https://github.com/para-diso/assert-approx
- Owner: PARA-DISO
- Created: 2024-11-28T05:10:42.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-29T02:09:56.000Z (about 2 months ago)
- Last Synced: 2024-11-29T03:22:32.750Z (about 2 months ago)
- Topics: assert, c
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# assert-approx
浮動小数点数の演算精度誤差に対応するアサート機能。
有効ビット数を指定することで任意の精度でアサーションできる。## example
```c
#ifndef DIGITS
#define DIGITS 10
#endif
#include "assert-approx/assert-approx.h"int main() {
assert_approx(0.3, 0.1 + 0.2);
return 0;
}
````DIGITS`で有効ビット数を指定。
デフォルトでは16bitとなる。## 動作
引数の値が不一致であった場合は、場所と値を表示して関数が終了することなくエラー終了する。
一致した場合は、0を返す。