mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +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
|
||
|
}
|