milvus/pkg/util/indexparamcheck/bin_flat_checker.go

18 lines
378 B
Go
Raw Normal View History

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{}
}