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

com.sigopt.model.PlanRules Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.sigopt.model;

public class PlanRules extends StructObject {
    public PlanRules() {
        super();
    }

    public Integer getMaxDimension() {
        return Utils.asInteger(this.get("max_dimension"));
    }

    public Integer getMaxExperiments() {
        return Utils.asInteger(this.get("max_experiments"));
    }

    public Integer getMaxObservations() {
        return Utils.asInteger(this.get("max_observations"));
    }

    public Integer getMaxParallelism() {
        return Utils.asInteger(this.get("max_parallelism"));
    }

    public Integer getMaxUsers() {
        return Utils.asInteger(this.get("max_users"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy