mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0030564: Coding - math_Gauss uninitialized 'Singular' member variable
Removed unused class field Singular.
This commit is contained in:
parent
a7fd4b1bb0
commit
5716d13b43
@ -58,7 +58,6 @@ math_FunctionWithDerivative.cxx
|
||||
math_FunctionWithDerivative.hxx
|
||||
math_Gauss.cxx
|
||||
math_Gauss.hxx
|
||||
math_Gauss.lxx
|
||||
math_GaussLeastSquare.cxx
|
||||
math_GaussLeastSquare.hxx
|
||||
math_GaussLeastSquare.lxx
|
||||
|
@ -12,14 +12,8 @@
|
||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
//#ifndef OCCT_DEBUG
|
||||
#define No_Standard_RangeError
|
||||
#define No_Standard_OutOfRange
|
||||
#define No_Standard_DimensionError
|
||||
|
||||
//#endif
|
||||
|
||||
#include <math_Gauss.hxx>
|
||||
|
||||
#include <math_Matrix.hxx>
|
||||
#include <math_NotSquare.hxx>
|
||||
#include <math_Recipes.hxx>
|
||||
@ -30,9 +24,11 @@
|
||||
math_Gauss::math_Gauss(const math_Matrix& A,
|
||||
const Standard_Real MinPivot,
|
||||
const Handle(Message_ProgressIndicator) & aProgress)
|
||||
: LU (1, A.RowNumber(), 1, A.ColNumber()),
|
||||
Index(1, A.RowNumber()) {
|
||||
|
||||
: LU (1, A.RowNumber(), 1, A.ColNumber()),
|
||||
Index(1, A.RowNumber()),
|
||||
D (0.0),
|
||||
Done (Standard_False)
|
||||
{
|
||||
math_NotSquare_Raise_if(A.RowNumber() != A.ColNumber(), " ");
|
||||
LU = A;
|
||||
Standard_Integer Error = LU_Decompose(LU,
|
||||
@ -118,7 +114,3 @@ void math_Gauss::Dump(Standard_OStream& o) const {
|
||||
o << " Status = not Done \n";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -34,8 +34,6 @@ class StdFail_NotDone;
|
||||
class math_Matrix;
|
||||
class Message_ProgressIndicator;
|
||||
|
||||
|
||||
|
||||
//! This class implements the Gauss LU decomposition (Crout algorithm)
|
||||
//! with partial pivoting (rows interchange) of a square matrix and
|
||||
//! the different possible derived calculation :
|
||||
@ -48,8 +46,6 @@ public:
|
||||
|
||||
DEFINE_STANDARD_ALLOC
|
||||
|
||||
|
||||
|
||||
//! Given an input n X n matrix A this constructor performs its LU
|
||||
//! decomposition with partial pivoting (interchange of rows).
|
||||
//! This LU decomposition is stored internally and may be used to
|
||||
@ -62,8 +58,7 @@ public:
|
||||
const Handle(Message_ProgressIndicator) & aProgress = Handle(Message_ProgressIndicator)());
|
||||
|
||||
//! Returns true if the computations are successful, otherwise returns false
|
||||
Standard_Boolean IsDone() const;
|
||||
|
||||
Standard_Boolean IsDone() const { return Done; }
|
||||
|
||||
//! Given the input Vector B this routine returns the solution X of the set
|
||||
//! of linear equations A . X = B.
|
||||
@ -72,7 +67,6 @@ public:
|
||||
//! Exception DimensionError is raised if the range of B is not
|
||||
//! equal to the number of rows of A.
|
||||
Standard_EXPORT void Solve (const math_Vector& B, math_Vector& X) const;
|
||||
|
||||
|
||||
//! Given the input Vector B this routine solves the set of linear
|
||||
//! equations A . X = B. B is replaced by the vector solution X.
|
||||
@ -81,14 +75,12 @@ public:
|
||||
//! Exception DimensionError is raised if the range of B is not
|
||||
//! equal to the number of rows of A.
|
||||
Standard_EXPORT void Solve (math_Vector& B) const;
|
||||
|
||||
|
||||
//! This routine returns the value of the determinant of the previously LU
|
||||
//! decomposed matrix A.
|
||||
//! Exception NotDone may be raised if the decomposition of A was not done
|
||||
//! successfully, zero is returned if the matrix A was considered as singular.
|
||||
Standard_EXPORT Standard_Real Determinant() const;
|
||||
|
||||
|
||||
//! This routine outputs Inv the inverse of the previously LU decomposed
|
||||
//! matrix A.
|
||||
@ -101,33 +93,19 @@ public:
|
||||
//! Is used to redefine the operator <<.
|
||||
Standard_EXPORT void Dump (Standard_OStream& o) const;
|
||||
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
|
||||
Standard_Boolean Singular;
|
||||
math_Matrix LU;
|
||||
math_IntegerVector Index;
|
||||
Standard_Real D;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
|
||||
|
||||
Standard_Boolean Done;
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
#include <math_Gauss.lxx>
|
||||
|
||||
|
||||
|
||||
|
||||
inline Standard_OStream& operator<<(Standard_OStream& o, const math_Gauss& mG)
|
||||
{
|
||||
mG.Dump(o);
|
||||
return o;
|
||||
}
|
||||
|
||||
#endif // _math_Gauss_HeaderFile
|
||||
|
@ -1,25 +0,0 @@
|
||||
// Copyright (c) 1997-1999 Matra Datavision
|
||||
// Copyright (c) 1999-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.
|
||||
|
||||
// math_Gauss.lxx
|
||||
// lpa, le 28/01/92
|
||||
|
||||
inline Standard_Boolean math_Gauss::IsDone() const { return Done; }
|
||||
|
||||
inline Standard_OStream& operator<<(Standard_OStream& o, const math_Gauss& mG)
|
||||
{
|
||||
mG.Dump(o);
|
||||
return o;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user