0024044: Performance improvements: Foundation Classes (math)
[occt.git] / src / math / math_Function.cdl
CommitLineData
b311480e 1-- Created on: 1991-05-06
2-- Created by: Laurent PAINNOT
3-- Copyright (c) 1991-1999 Matra Datavision
4-- Copyright (c) 1999-2012 OPEN CASCADE SAS
5--
6-- The content of this file is subject to the Open CASCADE Technology Public
7-- License Version 6.5 (the "License"). You may not use the content of this file
8-- except in compliance with the License. Please obtain a copy of the License
9-- at http://www.opencascade.org and read it completely before using this file.
10--
11-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13--
14-- The Original Code and all software distributed under the License is
15-- distributed on an "AS IS" basis, without warranty of any kind, and the
16-- Initial Developer hereby disclaims all such warranties, including without
17-- limitation, any warranties of merchantability, fitness for a particular
18-- purpose or non-infringement. Please see the License for the specific terms
19-- and conditions governing the rights and limitations under the License.
20
7fd59977 21
22
23deferred class Function from math
24
25 ---Purpose: This abstract class describes the virtual functions
26 -- associated with a Function of a single variable.
27
28is
29
30 Value(me: in out; X: Real; F: out Real)
31 ---Purpose: Computes the value of the function <F> for a given value of
32 -- variable <X>.
33 -- returns True if the computation was done successfully,
34 -- False otherwise.
35
36 returns Boolean
37 is deferred;
38
39
40 GetStateNumber(me: in out)
41 ---Purpose: returns the state of the function corresponding to the
42 -- latest call of any methods associated with the function.
43 -- This function is called by each of the algorithms
44 -- described later which defined the function Integer
45 -- Algorithm::StateNumber(). The algorithm has the
46 -- responsibility to call this function when it has found
47 -- a solution (i.e. a root or a minimum) and has to maintain
48 -- the association between the solution found and this
49 -- StateNumber.
50 -- Byu default, this method returns 0 (which means for the
51 -- algorithm: no state has been saved). It is the
52 -- responsibility of the programmer to decide if he needs
53 -- to save the current state of the function and to return
54 -- an Integer that allows retrieval of the state.
55
56 returns Integer
57 is virtual;
58
59
60end Function;
61
62
63