Skip to content

Commit

Permalink
Fixes a bug with the naming of the inner product distance.
Browse files Browse the repository at this point in the history
  • Loading branch information
ppanopticon committed Jun 2, 2024
1 parent 10882e3 commit a56b54b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import org.vitrivr.cottontail.core.values.*
sealed class InnerProductDistance<T : VectorValue<*>>(type: Types.Vector<T,*>): VectorDistance<T>(type) {

companion object: FunctionGenerator<DoubleValue> {
val FUNCTION_NAME = Name.FunctionName.create("dotp")
val FUNCTION_NAME = Name.FunctionName.create("innerproduct")

override val signature: Signature.Open
get() = Signature.Open(FUNCTION_NAME, arrayOf(Argument.Vector, Argument.Vector))
Expand Down

0 comments on commit a56b54b

Please sign in to comment.