mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
145 lines
5.6 KiB
Plaintext
145 lines
5.6 KiB
Plaintext
-- Created on: 2005-12-08
|
|
-- Created by: Sergey KHROMOV
|
|
-- Copyright (c) 2005-2014 OPEN CASCADE SAS
|
|
--
|
|
-- This file is part of Open CASCADE Technology software library.
|
|
--
|
|
-- This library is free software; you can redistribute it and/or modify it under
|
|
-- the terms of the GNU Lesser General Public License version 2.1 as published
|
|
-- by the Free Software Foundation, with special exception defined in the file
|
|
-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
-- distribution for complete text of the license and disclaimer of any warranty.
|
|
--
|
|
-- Alternatively, this file may be used under the terms of Open CASCADE
|
|
-- commercial license or contractual agreement.
|
|
|
|
class KronrodSingleIntegration from math
|
|
---Purpose: This class implements the Gauss-Kronrod method of
|
|
-- integral computation.
|
|
|
|
uses
|
|
|
|
Function from math,
|
|
Vector from math,
|
|
Real from Standard,
|
|
Integer from Standard,
|
|
Boolean from Standard
|
|
|
|
raises
|
|
|
|
NotDone from StdFail
|
|
|
|
is
|
|
|
|
Create
|
|
---Purpose: An empty constructor.
|
|
returns KronrodSingleIntegration;
|
|
|
|
Create(theFunction : in out Function from math;
|
|
theLower : Real from Standard;
|
|
theUpper : Real from Standard;
|
|
theNbPnts : Integer from Standard)
|
|
---Purpose: Constructor. Takes the function, the lower and upper bound
|
|
-- values, the initial number of Kronrod points
|
|
returns KronrodSingleIntegration;
|
|
|
|
Create(theFunction : in out Function from math;
|
|
theLower : Real from Standard;
|
|
theUpper : Real from Standard;
|
|
theNbPnts : Integer from Standard;
|
|
theTolerance: Real from Standard;
|
|
theMaxNbIter: Integer from Standard)
|
|
---Purpose: Constructor. Takes the function, the lower and upper bound
|
|
-- values, the initial number of Kronrod points, the
|
|
-- tolerance value and the maximal number of iterations as
|
|
-- parameters.
|
|
returns KronrodSingleIntegration;
|
|
|
|
Perform(me: in out; theFunction : in out Function from math;
|
|
theLower : Real from Standard;
|
|
theUpper : Real from Standard;
|
|
theNbPnts : Integer from Standard);
|
|
---Purpose: Computation of the integral. Takes the function,
|
|
-- the lower and upper bound values, the initial number
|
|
-- of Kronrod points, the relative tolerance value and the
|
|
-- maximal number of iterations as parameters.
|
|
-- theNbPnts should be odd and greater then or equal to 3.
|
|
|
|
Perform(me: in out; theFunction : in out Function from math;
|
|
theLower : Real from Standard;
|
|
theUpper : Real from Standard;
|
|
theNbPnts : Integer from Standard;
|
|
theTolerance: Real from Standard;
|
|
theMaxNbIter: Integer from Standard);
|
|
---Purpose: Computation of the integral. Takes the function,
|
|
-- the lower and upper bound values, the initial number
|
|
-- of Kronrod points, the relative tolerance value and the
|
|
-- maximal number of iterations as parameters.
|
|
-- theNbPnts should be odd and greater then or equal to 3.
|
|
-- Note that theTolerance is relative, i.e. the criterion of
|
|
-- solution reaching is:
|
|
-- Abs(Kronrod - Gauss)/Abs(Kronrod) < theTolerance.
|
|
-- theTolerance should be positive.
|
|
|
|
IsDone(me)
|
|
---Purpose: Returns Standard_True if computation is performed
|
|
-- successfully.
|
|
---C++: inline
|
|
returns Boolean from Standard;
|
|
|
|
Value(me)
|
|
---Purpose: Returns the value of the integral.
|
|
---C++: inline
|
|
returns Real from Standard
|
|
raises NotDone;
|
|
|
|
ErrorReached(me)
|
|
---Purpose: Returns the value of the relative error reached.
|
|
---C++: inline
|
|
returns Real from Standard
|
|
raises NotDone;
|
|
|
|
AbsolutError(me)
|
|
---Purpose: Returns the value of the relative error reached.
|
|
---C++: inline
|
|
returns Real from Standard
|
|
raises NotDone;
|
|
|
|
OrderReached(me)
|
|
---Purpose: Returns the number of Kronrod points
|
|
-- for which the result is computed.
|
|
---C++: inline
|
|
returns Integer from Standard
|
|
raises NotDone;
|
|
|
|
NbIterReached(me)
|
|
---Purpose: Returns the number of iterations
|
|
-- that were made to compute result.
|
|
---C++: inline
|
|
returns Integer from Standard
|
|
raises NotDone;
|
|
|
|
GKRule(myclass;
|
|
theFunction : in out Function from math;
|
|
theLower : Real from Standard;
|
|
theUpper : Real from Standard;
|
|
theGaussP : Vector from math;
|
|
theGaussW : Vector from math;
|
|
theKronrodP : Vector from math;
|
|
theKronrodW : Vector from math;
|
|
theValue : in out Real from Standard;
|
|
theError : in out Real from Standard)
|
|
|
|
returns Boolean from Standard;
|
|
|
|
fields
|
|
|
|
myIsDone : Boolean from Standard;
|
|
myValue : Real from Standard;
|
|
myErrorReached : Real from Standard;
|
|
myAbsolutError : Real from Standard;
|
|
myNbPntsReached: Integer from Standard;
|
|
myNbIterReached: Integer from Standard;
|
|
|
|
end KronrodSingleIntegration;
|