mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
Added initialization of fields that had not initialization Added default constructors to classes without constructors
94 lines
2.7 KiB
C++
94 lines
2.7 KiB
C++
// Created on: 1997-09-11
|
|
// Created by: Philippe MANGIN
|
|
// 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.
|
|
|
|
#ifndef _FEmTool_ElementaryCriterion_HeaderFile
|
|
#define _FEmTool_ElementaryCriterion_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <TColStd_HArray2OfReal.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <TColStd_HArray2OfInteger.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <math_Vector.hxx>
|
|
class Standard_NotImplemented;
|
|
class Standard_DomainError;
|
|
class math_Matrix;
|
|
|
|
|
|
class FEmTool_ElementaryCriterion;
|
|
DEFINE_STANDARD_HANDLE(FEmTool_ElementaryCriterion, Standard_Transient)
|
|
|
|
//! defined J Criteria to used in minimisation
|
|
class FEmTool_ElementaryCriterion : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
//! Empty constructor
|
|
Standard_EXPORT FEmTool_ElementaryCriterion();
|
|
|
|
//! Set the coefficient of the Element (the Curve)
|
|
Standard_EXPORT void Set (const Handle(TColStd_HArray2OfReal)& Coeff);
|
|
|
|
//! Set the definition interval of the Element
|
|
Standard_EXPORT virtual void Set (const Standard_Real FirstKnot, const Standard_Real LastKnot);
|
|
|
|
//! To know if two dimension are independent.
|
|
Standard_EXPORT virtual Handle(TColStd_HArray2OfInteger) DependenceTable() const = 0;
|
|
|
|
//! To Compute J(E) where E is the current Element
|
|
Standard_EXPORT virtual Standard_Real Value() = 0;
|
|
|
|
//! To Compute J(E) the coefficients of Hessian matrix of
|
|
//! J(E) wich are crossed derivatives in dimensions <Dim1>
|
|
//! and <Dim2>.
|
|
//! If DependenceTable(Dimension1,Dimension2) is False
|
|
Standard_EXPORT virtual void Hessian (const Standard_Integer Dim1, const Standard_Integer Dim2, math_Matrix& H) = 0;
|
|
|
|
//! To Compute the coefficients in the dimension <dim>
|
|
//! of the J(E)'s Gradient where E is the current Element
|
|
Standard_EXPORT virtual void Gradient (const Standard_Integer Dim, math_Vector& G) = 0;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(FEmTool_ElementaryCriterion,Standard_Transient)
|
|
|
|
protected:
|
|
|
|
|
|
Handle(TColStd_HArray2OfReal) myCoeff;
|
|
Standard_Real myFirst;
|
|
Standard_Real myLast;
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _FEmTool_ElementaryCriterion_HeaderFile
|