Example usage for org.apache.commons.math3.genetics StoppingCondition interface-usage

List of usage examples for org.apache.commons.math3.genetics StoppingCondition interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.genetics StoppingCondition interface-usage.

Usage

From source file org.apache.kylin.cube.cuboid.algorithm.generic.CombinedStoppingCondition.java

public class CombinedStoppingCondition implements StoppingCondition {
    private List<StoppingCondition> conditions;

    public CombinedStoppingCondition(List<StoppingCondition> conditions) {
        this.conditions = conditions;
    }