blob: b663b5d1aa1f823ad7e3c4e39a8679681b2a1b78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// File math_GaussLeastSquare.lxx
inline Standard_Boolean math_GaussLeastSquare::IsDone() const { return Done; }
inline Standard_OStream& operator<<(Standard_OStream& o,
const math_GaussLeastSquare& G)
{
G.Dump(o);
return o;
}
|