mirror of https://github.com/milvus-io/milvus.git
18 lines
378 B
Go
18 lines
378 B
Go
package indexparamcheck
|
|
|
|
type binFlatChecker struct {
|
|
binaryVectorBaseChecker
|
|
}
|
|
|
|
func (c binFlatChecker) CheckTrain(params map[string]string) error {
|
|
return c.binaryVectorBaseChecker.CheckTrain(params)
|
|
}
|
|
|
|
func (c binFlatChecker) StaticCheck(params map[string]string) error {
|
|
return c.staticCheck(params)
|
|
}
|
|
|
|
func newBinFlatChecker() IndexChecker {
|
|
return &binFlatChecker{}
|
|
}
|