mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
9 lines
171 B
Go
9 lines
171 B
Go
|
package planparserv2
|
||
|
|
||
|
const float64EqualityThreshold = 1e-9
|
||
|
|
||
|
func floatingEqual(a, b float64) bool {
|
||
|
// return math.Abs(a-b) <= float64EqualityThreshold
|
||
|
return a == b
|
||
|
}
|