001package org.dllearner.accuracymethods;
002
003/**
004 * Accuracy Method with beta factor;
005 * the beta factor is used to indicate the coverage on class learning problems.
006 * beta also influences weak elimination
007 */
008public interface AccMethodWithBeta {
009        /**
010         * set the beta value;
011         * the consumer of the accuracy method should call this on all implementing accuracy methods
012         * @param beta
013         */
014        void setBeta(double beta);
015}