blob: d5e84793480bf4427e2c616c058694ed6f975477 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// File: GProp_TFunction.lxx
// Created: Wed Dec 21 10:47:36 2005
// Author: Sergey KHROMOV
// <skv@dimox>
//=======================================================================
//function : SetNbKronrodPoints
//purpose :
//=======================================================================
inline void GProp_TFunction::SetNbKronrodPoints
(const Standard_Integer theNbPoints)
{
myNbPntOuter = (theNbPoints%2 == 0) ? theNbPoints + 1 : theNbPoints;
}
//=======================================================================
//function : SetValueType
//purpose :
//=======================================================================
inline void GProp_TFunction::SetValueType(const GProp_ValueType theType)
{
myValueType = theType;
myUFunction.SetValueType(myValueType);
}
//=======================================================================
//function : SetTolerance
//purpose :
//=======================================================================
inline void GProp_TFunction::SetTolerance(const Standard_Real theTolerance)
{
myTolerance = theTolerance;
}
//=======================================================================
//function : TolReached
//purpose :
//=======================================================================
inline Standard_Real GProp_TFunction::ErrorReached() const
{
return myErrReached;
}
//=======================================================================
//function : ErrorReached
//purpose :
//=======================================================================
inline Standard_Real GProp_TFunction::AbsolutError() const
{
return myAbsError;
}
|