source: src/main/java/agents/anac/y2015/agentBuyogV2/flanagan/math/Minimization.java

Last change on this file was 127, checked in by Wouter Pasman, 6 years ago

#41 ROLL BACK of rev.126 . So this version is equal to rev. 125

File size: 1.8 KB
Line 
1/*
2* Class Minimization
3* IDENTICAL TO class Minimisation - created simply to accommodate alternate spelling
4*
5* Contains methods for finding the values of the
6* function parameters that minimize that function
7* using the Nelder and Mead Simplex method.
8*
9* The function needed by the minimization method
10* is supplied by though the interface, MinimizationFunction
11*
12* WRITTEN BY: Dr Michael Thomas Flanagan
13*
14* DATE: April 2003
15* MODIFIED: 29 December 2005, 18 February 2006, 28 December 2007, 10/12 May 2008
16*
17* DOCUMENTATION
18* See Michael Thomas Flanagan's Java library on-line web page:
19* http://www.ee.ucl.ac.uk/~mflanaga/java/Minimisation.html
20* http://www.ee.ucl.ac.uk/~mflanaga/java/
21*
22* Copyright (c) 2003 - 2008
23*
24* PERMISSION TO COPY:
25* Permission to use, copy and modify this software and its documentation for
26* NON-COMMERCIAL purposes is granted, without fee, provided that an acknowledgement
27* to the author, Michael Thomas Flanagan at www.ee.ucl.ac.uk/~mflanaga, appears in all copies.
28*
29* Dr Michael Thomas Flanagan makes no representations about the suitability
30* or fitness of the software for any or for a particular purpose.
31* Michael Thomas Flanagan shall not be liable for any damages suffered
32* as a result of using, modifying or distributing this software or its derivatives.
33*
34***************************************************************************************/
35
36package agents.anac.y2015.agentBuyogV2.flanagan.math;
37
38import java.util.*;
39
40import agents.anac.y2015.agentBuyogV2.flanagan.io.FileOutput;
41import agents.anac.y2015.agentBuyogV2.flanagan.math.Fmath;
42
43// Minimization/Minimisation class
44public class Minimization extends Minimisation{
45
46 //Constructors
47 public Minimization(){
48 super();
49 super.iseOption = false;
50 }
51}
Note: See TracBrowser for help on using the repository browser.