Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Dafny 中的实数是多少。它们是否表示为 IEEE 754-2008 浮点数?如果不是,那么它们是什么?即,Dafny 中真实类型的规范是什么?
Dafny 的real数字不是浮点数。
real
从验证的角度来看,它们是数学实数,Dafny 使用 Z3 的实数算术理论来解释它们。
从编译的角度来看,Dafny 实际上将它们编译为BigRationals,这是因为 Dafny 没有任何用于创建无理实数的内置操作。
BigRational