2023-05-06 02:40:39 +00:00
|
|
|
package indexparamcheck
|
|
|
|
|
|
|
|
type binFlatChecker struct {
|
|
|
|
binaryVectorBaseChecker
|
|
|
|
}
|
|
|
|
|
2023-05-29 12:35:28 +00:00
|
|
|
func (c binFlatChecker) CheckTrain(params map[string]string) error {
|
2023-05-06 02:40:39 +00:00
|
|
|
return c.binaryVectorBaseChecker.CheckTrain(params)
|
|
|
|
}
|
|
|
|
|
2023-05-29 12:35:28 +00:00
|
|
|
func (c binFlatChecker) StaticCheck(params map[string]string) error {
|
|
|
|
return c.staticCheck(params)
|
|
|
|
}
|
|
|
|
|
2023-05-06 02:40:39 +00:00
|
|
|
func newBinFlatChecker() IndexChecker {
|
|
|
|
return &binFlatChecker{}
|
|
|
|
}
|