package com.srbenoit.math.optimizers;

/**
 * An interface for classes that represent functions that can be optimized over a region.
 */
public interface RegionalOptimizable extends Optimizable {

    /**
     * Called by the regional optimizer when it locates a regional minimum.
     *
     * @param  parameters  the parameters at the minimum
     */
    void foundAMinium(double[] parameters);
}
