Uses of Interface
model.ApproxModel

Packages that use ApproxModel
diviner Provides functionality for measuring the level of promise of a design candidates. 
iterator Provides iterator classes. 
model Provides classes that handle various kinds of approximation models, data fits, and so on. 
 

Uses of ApproxModel in diviner
 

Methods in diviner that return ApproxModel
 ApproxModel BasicMultiObjectiveDiviner.getApproxModel()
           
 ApproxModel MultiObjectiveDiviner.getApproxModel()
          Returns the surrogate model used by this diviner.
 ApproxModel BoundConstrainedDiviner.getObjectiveModel()
          Returns the ApproxModel for this BoundConstrainedDiviner.
 ApproxModel BasicBoundConstrainedDiviner.getObjectiveModel()
           
 

Methods in diviner that return types with arguments of type ApproxModel
 java.util.ArrayList<ApproxModel> InequalityConstrainedDiviner.getConstraintModels()
          Returns the list of models of constraints.
 java.util.ArrayList<ApproxModel> BasicInequalityConstrainedDiviner.getConstraintModels()
           
 

Methods in diviner with parameters of type ApproxModel
 void BasicMultiObjectiveDiviner.setApproxModel(ApproxModel approxModel)
           
 void MultiObjectiveDiviner.setApproxModel(ApproxModel approxModel)
          The surrogate model to be used.
 void MultiMetricDiviner.setObjectiveModel(ApproxModel approxModel)
           
 void BoundConstrainedDiviner.setObjectiveModel(ApproxModel approxModel)
          Sets the ApproxModel for this BoundConstrainedDiviner.
 void BasicBoundConstrainedDiviner.setObjectiveModel(ApproxModel approxModel)
           
 

Method parameters in diviner with type arguments of type ApproxModel
 void InequalityConstrainedDiviner.setConstraintModels(java.util.ArrayList<ApproxModel> approxModels)
          Sets the list of constraint models.
 void BasicInequalityConstrainedDiviner.setConstraintModels(java.util.ArrayList<ApproxModel> approxModels)
           
 

Uses of ApproxModel in iterator
 

Methods in iterator that return ApproxModel
 ApproxModel MultiPointRiskPerfOptimizer.getApproxModel()
          Returns the approxModel.
 

Methods in iterator that return types with arguments of type ApproxModel
 java.util.ArrayList<ApproxModel> TwoStageRiskPerfAlgoBuilder.getApproxModels()
          Returns the list of approximation models.
 java.util.ArrayList<ApproxModel> TwoStageAlgoBuilder.getApproxModels()
          Returns the list of approximation models.
 

Methods in iterator with parameters of type ApproxModel
 void MultiPointRiskPerfOptimizer.setApproxModel(ApproxModel gp)
          Sets the approxModel.
 

Method parameters in iterator with type arguments of type ApproxModel
 void TwoStageRiskPerfAlgoBuilder.setApproxModels(java.util.ArrayList<ApproxModel> approxModels)
          Sets the list of approximation models.
 void TwoStageAlgoBuilder.setApproxModels(java.util.ArrayList<ApproxModel> approxModels)
          Sets the list of approximation models.
 

Uses of ApproxModel in model
 

Subinterfaces of ApproxModel in model
 interface TwoFidelityApproxModel
          Fits an approximate model to the difference between given data and a low-order approximation of the oracle that generated that data.
 

Classes in model that implement ApproxModel
 class BasicApproxModel
          Basic implementation of the methods in ApproxModel.
 class BasicTwoFidelityModel
          Basic two-fidelity approximation model, using an additive surrogate correction.
 class GPRegression
          Creation process: Set tau (compulsory), set prior mean and covariance, set bounds, init().
 class PenaltyFunctionModel
          Computes mean and variance for an external penalty function augmented Lagrangian.
 

Methods in model that return ApproxModel
 ApproxModel ApproxModelToVectorFunction.getApproxModel()
          Returns the approxModel.
 ApproxModel PenaltyFunctionModel.getObjectiveModel()
           
 

Methods in model that return types with arguments of type ApproxModel
 java.util.ArrayList<ApproxModel> PenaltyFunctionModel.getConstraintModels()
           
 

Methods in model with parameters of type ApproxModel
 void ApproxModelToVectorFunction.setApproxModel(ApproxModel approxModel)
          Sets the approxModel.
 void PenaltyFunctionModel.setObjectiveModel(ApproxModel objectiveModel)
           
 

Method parameters in model with type arguments of type ApproxModel
 void PenaltyFunctionModel.setConstraintModels(java.util.ArrayList<ApproxModel> constraintModels)