Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
摘要
在
tests/scheme/base/eq-sign-test.scm中发现跨平台数值比较行为不一致的问题,添加调研记录到开发文档。问题描述
(= 1/3 0.3333333333333333)在不同平台上行为不一致:#f#t根本原因
S7 Scheme 在比较有理数和浮点数时,使用
long_double将有理数转换为浮点数后比较。不同平台上long double的精度不同:相关代码
src/s7.c:18957: 数值比较逻辑src/s7.c:3755: fraction 宏定义状态
当前通过
(os-linux?)在测试中进行平台适配,根本问题需 S7 Scheme 层面修复。