mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +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_FunctionWithDerivative.hxx
|
||||||
math_Gauss.cxx
|
math_Gauss.cxx
|
||||||
math_Gauss.hxx
|
math_Gauss.hxx
|
||||||
math_Gauss.lxx
|
|
||||||
math_GaussLeastSquare.cxx
|
math_GaussLeastSquare.cxx
|
||||||
math_GaussLeastSquare.hxx
|
math_GaussLeastSquare.hxx
|
||||||
math_GaussLeastSquare.lxx
|
math_GaussLeastSquare.lxx
|
||||||
|
@ -12,14 +12,8 @@
|
|||||||
// Alternatively, this file may be used under the terms of Open CASCADE
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
||||||
// commercial license or contractual agreement.
|
// 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_Gauss.hxx>
|
||||||
|
|
||||||
#include <math_Matrix.hxx>
|
#include <math_Matrix.hxx>
|
||||||
#include <math_NotSquare.hxx>
|
#include <math_NotSquare.hxx>
|
||||||
#include <math_Recipes.hxx>
|
#include <math_Recipes.hxx>
|
||||||
@ -30,9 +24,11 @@
|
|||||||
math_Gauss::math_Gauss(const math_Matrix& A,
|
math_Gauss::math_Gauss(const math_Matrix& A,
|
||||||
const Standard_Real MinPivot,
|
const Standard_Real MinPivot,
|
||||||
const Handle(Message_ProgressIndicator) & aProgress)
|
const Handle(Message_ProgressIndicator) & aProgress)
|
||||||
: LU (1, A.RowNumber(), 1, A.ColNumber()),
|
: LU (1, A.RowNumber(), 1, A.ColNumber()),
|
||||||
Index(1, A.RowNumber()) {
|
Index(1, A.RowNumber()),
|
||||||
|
D (0.0),
|
||||||
|
Done (Standard_False)
|
||||||
|
{
|
||||||
math_NotSquare_Raise_if(A.RowNumber() != A.ColNumber(), " ");
|
math_NotSquare_Raise_if(A.RowNumber() != A.ColNumber(), " ");
|
||||||
LU = A;
|
LU = A;
|
||||||
Standard_Integer Error = LU_Decompose(LU,
|
Standard_Integer Error = LU_Decompose(LU,
|
||||||
@ -118,7 +114,3 @@ void math_Gauss::Dump(Standard_OStream& o) const {
|
|||||||
o << " Status = not Done \n";
|
o << " Status = not Done \n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,8 +34,6 @@ class StdFail_NotDone;
|
|||||||
class math_Matrix;
|
class math_Matrix;
|
||||||
class Message_ProgressIndicator;
|
class Message_ProgressIndicator;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//! This class implements the Gauss LU decomposition (Crout algorithm)
|
//! This class implements the Gauss LU decomposition (Crout algorithm)
|
||||||
//! with partial pivoting (rows interchange) of a square matrix and
|
//! with partial pivoting (rows interchange) of a square matrix and
|
||||||
//! the different possible derived calculation :
|
//! the different possible derived calculation :
|
||||||
@ -48,8 +46,6 @@ public:
|
|||||||
|
|
||||||
DEFINE_STANDARD_ALLOC
|
DEFINE_STANDARD_ALLOC
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//! Given an input n X n matrix A this constructor performs its LU
|
//! Given an input n X n matrix A this constructor performs its LU
|
||||||
//! decomposition with partial pivoting (interchange of rows).
|
//! decomposition with partial pivoting (interchange of rows).
|
||||||
//! This LU decomposition is stored internally and may be used to
|
//! This LU decomposition is stored internally and may be used to
|
||||||
@ -62,8 +58,7 @@ public:
|
|||||||
const Handle(Message_ProgressIndicator) & aProgress = Handle(Message_ProgressIndicator)());
|
const Handle(Message_ProgressIndicator) & aProgress = Handle(Message_ProgressIndicator)());
|
||||||
|
|
||||||
//! Returns true if the computations are successful, otherwise returns false
|
//! 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
|
//! Given the input Vector B this routine returns the solution X of the set
|
||||||
//! of linear equations A . X = B.
|
//! of linear equations A . X = B.
|
||||||
@ -73,7 +68,6 @@ public:
|
|||||||
//! equal to the number of rows of A.
|
//! equal to the number of rows of A.
|
||||||
Standard_EXPORT void Solve (const math_Vector& B, math_Vector& X) const;
|
Standard_EXPORT void Solve (const math_Vector& B, math_Vector& X) const;
|
||||||
|
|
||||||
|
|
||||||
//! Given the input Vector B this routine solves the set of linear
|
//! Given the input Vector B this routine solves the set of linear
|
||||||
//! equations A . X = B. B is replaced by the vector solution X.
|
//! equations A . X = B. B is replaced by the vector solution X.
|
||||||
//! Exception NotDone is raised if the decomposition of A was not done
|
//! Exception NotDone is raised if the decomposition of A was not done
|
||||||
@ -82,14 +76,12 @@ public:
|
|||||||
//! equal to the number of rows of A.
|
//! equal to the number of rows of A.
|
||||||
Standard_EXPORT void Solve (math_Vector& B) const;
|
Standard_EXPORT void Solve (math_Vector& B) const;
|
||||||
|
|
||||||
|
|
||||||
//! This routine returns the value of the determinant of the previously LU
|
//! This routine returns the value of the determinant of the previously LU
|
||||||
//! decomposed matrix A.
|
//! decomposed matrix A.
|
||||||
//! Exception NotDone may be raised if the decomposition of A was not done
|
//! 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.
|
//! successfully, zero is returned if the matrix A was considered as singular.
|
||||||
Standard_EXPORT Standard_Real Determinant() const;
|
Standard_EXPORT Standard_Real Determinant() const;
|
||||||
|
|
||||||
|
|
||||||
//! This routine outputs Inv the inverse of the previously LU decomposed
|
//! This routine outputs Inv the inverse of the previously LU decomposed
|
||||||
//! matrix A.
|
//! matrix A.
|
||||||
//! Exception DimensionError is raised if the ranges of B are not
|
//! Exception DimensionError is raised if the ranges of B are not
|
||||||
@ -101,33 +93,19 @@ public:
|
|||||||
//! Is used to redefine the operator <<.
|
//! Is used to redefine the operator <<.
|
||||||
Standard_EXPORT void Dump (Standard_OStream& o) const;
|
Standard_EXPORT void Dump (Standard_OStream& o) const;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Standard_Boolean Singular;
|
|
||||||
math_Matrix LU;
|
math_Matrix LU;
|
||||||
math_IntegerVector Index;
|
math_IntegerVector Index;
|
||||||
Standard_Real D;
|
Standard_Real D;
|
||||||
|
|
||||||
|
|
||||||
private:
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Standard_Boolean Done;
|
Standard_Boolean Done;
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inline Standard_OStream& operator<<(Standard_OStream& o, const math_Gauss& mG)
|
||||||
#include <math_Gauss.lxx>
|
{
|
||||||
|
mG.Dump(o);
|
||||||
|
return o;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#endif // _math_Gauss_HeaderFile
|
#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