1 | /*
|
---|
2 | * jcobyla
|
---|
3 | *
|
---|
4 | * The MIT License
|
---|
5 | *
|
---|
6 | * Copyright (c) 2012 Anders Gustafsson, Cureos AB.
|
---|
7 | *
|
---|
8 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
|
---|
9 | * (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge,
|
---|
10 | * publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
---|
11 | * subject to the following conditions:
|
---|
12 | *
|
---|
13 | * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
---|
14 | *
|
---|
15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
---|
16 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
|
---|
17 | * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
---|
18 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
---|
19 | *
|
---|
20 | * Remarks:
|
---|
21 | *
|
---|
22 | * The original Fortran 77 version of this code was by Michael Powell (M.J.D.Powell @ damtp.cam.ac.uk)
|
---|
23 | * The Fortran 90 version was by Alan Miller (Alan.Miller @ vic.cmis.csiro.au). Latest revision - 30 October 1998
|
---|
24 | */
|
---|
25 | package geniusweb.exampleparties.simpleshaop;
|
---|
26 |
|
---|
27 | /**
|
---|
28 | * Interface for calculation of objective function and constraints in COBYLA2 optimization.
|
---|
29 | *
|
---|
30 | * @author Anders Gustafsson, Cureos AB.
|
---|
31 | */
|
---|
32 | public interface Calcfc {
|
---|
33 | /**
|
---|
34 | * The objective and constraints function evaluation method used in COBYLA2 minimization.
|
---|
35 | * @param n Number of variables.
|
---|
36 | * @param m Number of constraints.
|
---|
37 | * @param x Variable values to be employed in function and constraints calculation.
|
---|
38 | * @param con Calculated function values of the constraints.
|
---|
39 | * @return Calculated objective function value.
|
---|
40 | */
|
---|
41 | double Compute(int n, int m, double[] x, double[] con);
|
---|
42 | }
|
---|