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

com.blazebit.ai.decisiontree.AttributeValue Maven / Gradle / Ivy

There is a newer version: 0.1.21
Show newest version
package com.blazebit.ai.decisiontree;

/**
 * Discrete Attribute.
 *
 * @author Christian Beikov
 */
public interface AttributeValue {

    public Object getValue();

    @Override
    public boolean equals(Object obj);

    @Override
    public int hashCode();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy