bbox6: A black-box computer model

View source: R/bbox6.R

bbox6R Documentation

A black-box computer model

Description

A black-box computer model that evaluates the objective and constraint functions for a given input value.

Usage

bbox6(x1)

Arguments

x1

A scalar value between 0 and 10, inclusive

Value

The evaluation of running the black-box computer model at input x1.

  • obj: A scalar objective function value

  • con: A vector of constraint function values

Note

A solution is feasible only if the all of the constraint function values are less than or equal to 0.

Examples

### Running the black-box computer model at x1 = 1
### obj = 0.926574 and con = (0.4259819,0.6472136)
### x1 = 1 is not a feasible solution

bbox6(1)

CompModels documentation built on Oct. 20, 2022, 5:06 p.m.

Related to bbox6 in CompModels...