summaryrefslogtreecommitdiff
path: root/inc/math_GaussSetIntegration.lxx
blob: 0a6b81cd37aa4b351c69f91d91fc79cf0a5f10f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <math_Vector.hxx>
#include <StdFail_NotDone.hxx>

 inline Standard_Boolean math_GaussSetIntegration::IsDone() const 
{
  return Done;
}

 inline const math_Vector& math_GaussSetIntegration::Value() const 
{
  StdFail_NotDone_Raise_if(!Done, "Integration ");
  return Val;
}