Interface Distance<E,J>

All Known Implementing Classes:
CosineSimilarityBetweenVectors, DistanceBetweenSolutionAndKNearestNeighbors, DominanceDistanceBetweenVectors, EuclideanDistanceBetweenSolutionAndASolutionListInObjectiveSpace, EuclideanDistanceBetweenSolutionsInObjectiveSpace, EuclideanDistanceBetweenSolutionsInSolutionSpace, EuclideanDistanceBetweenVectors
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Distance<E,J>
Interface representing distances between two entities
Author:
<antonio@lcc.uma.es>
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    compute(E element1, J element2)
     
  • Method Details

    • compute

      double compute(E element1, J element2)