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 | * Enumeration of exit statuses associated with COBYLA2 optimization.
|
---|
29 | *
|
---|
30 | * @author Anders Gustafsson, Cureos AB.
|
---|
31 | */
|
---|
32 | public enum CobylaExitStatus {
|
---|
33 | /**
|
---|
34 | * Optimization successfully completed.
|
---|
35 | */
|
---|
36 | Normal,
|
---|
37 |
|
---|
38 | /**
|
---|
39 | * Maximum number of iterations (function/constraints evaluations) reached during optimization.
|
---|
40 | */
|
---|
41 | MaxIterationsReached,
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * Size of rounding error is becoming damaging, terminating prematurely.
|
---|
45 | */
|
---|
46 | DivergingRoundingErrors
|
---|
47 | }
|
---|