Uses of Interface
microsim.matching.MatchingClosure

Packages that use MatchingClosure
Package
Description
 
  • Uses of MatchingClosure in microsim.matching

    Methods in microsim.matching with parameters of type MatchingClosure
    Modifier and Type
    Method
    Description
    org.apache.commons.math3.util.Pair<Set<T>,Set<T>>
    IterativeMatchingAlgorithm.matching(@NonNull Collection<T> collection1, @NonNull org.apache.commons.collections4.Predicate<T> filter1, @NonNull Collection<T> collection2, @NonNull org.apache.commons.collections4.Predicate<T> filter2, @NonNull MatchingScoreClosure<T> doubleClosure, @NonNull MatchingClosure<T> matching)
    Attempts to match people from two disjoint sets.
    org.apache.commons.math3.util.Pair<Set<T>,Set<T>>
    IterativeRandomMatching.matching(@NonNull Collection<T> collection1, @Nullable org.apache.commons.collections4.Predicate<T> filter1, @NonNull Collection<T> collection2, @Nullable org.apache.commons.collections4.Predicate<T> filter2, @NonNull MatchingScoreClosure<T> doubleClosure, @NonNull MatchingClosure<T> matching)
    Attempts to match people from two disjoint sets.
    org.apache.commons.math3.util.Pair<Set<T>,Set<T>>
    IterativeSimpleMatching.matching(@NonNull Collection<T> collection1, @Nullable org.apache.commons.collections4.Predicate<T> filter1, @NonNull Collection<T> collection2, @Nullable org.apache.commons.collections4.Predicate<T> filter2, @NonNull MatchingScoreClosure<T> doubleClosure, @NonNull MatchingClosure<T> matching)
    Attempts to match people from two disjoint sets.
    void
    MatchingAlgorithm.matching(@NonNull Collection<T> collection1, @NonNull org.apache.commons.collections4.Predicate<T> filter1, @NonNull Collection<T> collection2, @NonNull org.apache.commons.collections4.Predicate<T> filter2, @NonNull MatchingScoreClosure<T> doubleClosure, @NonNull MatchingClosure<T> matching)
    Attempts to match people from two disjoint sets.
    void
    SimpleMatching.matching(@NonNull Collection<T> collection1, @Nullable org.apache.commons.collections4.Predicate<T> filter1, @NonNull Collection<T> collection2, @Nullable org.apache.commons.collections4.Predicate<T> filter2, @NonNull MatchingScoreClosure<T> doubleClosure, @NonNull MatchingClosure<T> matching)
    Attempts to match people from two disjoint sets.