All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.inria.prophet4j.feature.FeatureCross Maven / Gradle / Ivy

The newest version!
package fr.inria.prophet4j.feature;

import java.util.*;

// entity to express characteristic by crossing corresponding features
public interface FeatureCross {
    Integer getId();

    Double getDegree();

    List getFeatures();

    boolean containFeature(Feature feature);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy