Interface WeightedNeighborSetPredicate.Factory<O>
-
- Type Parameters:
O
- Input relation object type restriction
- All Known Implementing Classes:
LinearWeightedExtendedNeighborhood.Factory
,UnweightedNeighborhoodAdapter.Factory
- Enclosing interface:
- WeightedNeighborSetPredicate
public static interface WeightedNeighborSetPredicate.Factory<O>
Factory interface to produce instances.- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeInformation
getInputTypeRestriction()
Get the input type informationWeightedNeighborSetPredicate
instantiate(Database database, Relation<? extends O> relation)
Instantiation method.
-
-
-
Method Detail
-
instantiate
WeightedNeighborSetPredicate instantiate(Database database, Relation<? extends O> relation)
Instantiation method.- Parameters:
database
- Database contextrelation
- Relation to instantiate for.- Returns:
- instance
-
getInputTypeRestriction
TypeInformation getInputTypeRestriction()
Get the input type information- Returns:
- input type
-
-