Class MinConGenLinEx2

java.lang.Object
com.imsl.test.example.math.MinConGenLinEx2

public class MinConGenLinEx2 extends Object

Minimizes a nonlinear function with constraints.

The problem

$${\rm {min}} \,\, f(x) = -x_0x_1x_2$$

subject to

$$\begin{array}{c} -x_0 - 2x_1 -2x_2 \le 0 \\ x_0 + 2x_1 + 2x_2 \le 72 \\ 0 \le x_0 \le 20 \\ 0 \le x_1 \le 11 \\ 0 \le x_2 \le 42 \\ \end{array}$$

is solved with an initial guess of \( x_0 = 10 \), \( x_1 = 10 \) and \( x_2 = 10 \).

See Also:
  • Constructor Details

    • MinConGenLinEx2

      public MinConGenLinEx2()
  • Method Details