bbox6 {CompModels} | R Documentation |
A black-box computer model that evaluates the objective and constraint functions for a given input value.
bbox6(x1)
x1 |
A scalar value between 0 and 10, inclusive |
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
A solution is feasible only if the all of the constraint function values are less than or equal to 0.
### 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)