1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00
occt/src/Expr/Expr_FunctionDerivative.cxx
ski 9775fa6110 0026937: Eliminate NO_CXX_EXCEPTION macro support
Macro NO_CXX_EXCEPTION was removed from code.
Method Raise() was replaced by explicit throw statement.
Method Standard_Failure::Caught() was replaced by normal C++mechanism of exception transfer.
Method Standard_Failure::Caught() is deprecated now.
Eliminated empty constructors.
Updated samples.
Eliminate empty method ChangeValue from NCollection_Map class.
Removed not operable methods from NCollection classes.
2017-02-02 16:35:54 +03:00

171 lines
4.9 KiB
C++

// Created on: 1991-06-27
// Created by: Arnaud BOUZY
// Copyright (c) 1991-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.
#include <Expr_FunctionDerivative.hxx>
#include <Expr_GeneralExpression.hxx>
#include <Expr_GeneralFunction.hxx>
#include <Expr_NamedFunction.hxx>
#include <Expr_NamedUnknown.hxx>
#include <Expr_NotEvaluable.hxx>
#include <Expr_NumericValue.hxx>
#include <Standard_DimensionMismatch.hxx>
#include <Standard_NotImplemented.hxx>
#include <Standard_NumericError.hxx>
#include <Standard_OutOfRange.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Expr_FunctionDerivative,Expr_GeneralFunction)
Expr_FunctionDerivative::Expr_FunctionDerivative (const Handle(Expr_GeneralFunction)& func, const Handle(Expr_NamedUnknown)& withX, const Standard_Integer deg)
{
myFunction = func;
myDerivate = withX;
if (deg <= 0) {
throw Standard_OutOfRange();
}
myDegree = deg;
UpdateExpression();
}
Standard_Integer Expr_FunctionDerivative::NbOfVariables () const
{
return myFunction->NbOfVariables();
}
Handle(Expr_NamedUnknown) Expr_FunctionDerivative::Variable (const Standard_Integer index) const
{
return myFunction->Variable(index);
}
Standard_Real Expr_FunctionDerivative::Evaluate (const Expr_Array1OfNamedUnknown& vars, const TColStd_Array1OfReal& values) const
{
if (vars.Length() != values.Length()) {
throw Standard_OutOfRange();
}
return myExp->Evaluate(vars,values);
}
Handle(Expr_GeneralFunction) Expr_FunctionDerivative::Copy () const
{
return new Expr_FunctionDerivative(myFunction->Copy(),myDerivate,myDegree);
}
Handle(Expr_GeneralFunction) Expr_FunctionDerivative::Derivative(const Handle(Expr_NamedUnknown)& var) const
{
return Derivative(var,1);
}
Handle(Expr_GeneralFunction) Expr_FunctionDerivative::Derivative(const Handle(Expr_NamedUnknown)& var, const Standard_Integer deg) const
{
if (var == myDerivate) {
return new Expr_FunctionDerivative(myFunction,var,myDegree+deg);
}
Handle(Expr_FunctionDerivative) me = this;
return new Expr_FunctionDerivative(me,var,deg);
}
Standard_Boolean Expr_FunctionDerivative::IsIdentical (const Handle(Expr_GeneralFunction)& func) const
{
if (!func->IsKind(STANDARD_TYPE(Expr_FunctionDerivative))) {
return Standard_False;
}
Handle(Expr_FunctionDerivative) dfunc = Handle(Expr_FunctionDerivative)::DownCast(func);
if (myDegree != dfunc->Degree()) {
return Standard_False;
}
if (!myDerivate->IsIdentical(dfunc->DerivVariable())) {
return Standard_False;
}
if (!myFunction->IsIdentical(dfunc->Function())) {
return Standard_False;
}
return Standard_True;
}
Standard_Boolean Expr_FunctionDerivative::IsLinearOnVariable(const Standard_Integer) const
{
// should be improved
return myExp->IsLinear();
}
Handle(Expr_GeneralFunction) Expr_FunctionDerivative::Function () const
{
return myFunction;
}
Standard_Integer Expr_FunctionDerivative::Degree () const
{
return myDegree;
}
Handle(Expr_NamedUnknown) Expr_FunctionDerivative::DerivVariable () const
{
return myDerivate;
}
TCollection_AsciiString Expr_FunctionDerivative::GetStringName() const
{
TCollection_AsciiString res;
if (NbOfVariables() ==1) {
res = myFunction->GetStringName();
char c = 39;
TCollection_AsciiString diff(myDegree,c);
res += diff;
return res;
}
TCollection_AsciiString diff("@");
if (myDegree > 1) {
TCollection_AsciiString deg(myDegree);
diff += deg;
}
res = diff;
res += myFunction->GetStringName();
res += "/";
Standard_Integer index=0;
for (Standard_Integer i=1; (i<= NbOfVariables()) && (index ==0) ; i++) {
if (Variable(i) == myDerivate) {
index =i;
}
}
res += diff;
res += "X";
TCollection_AsciiString rank(index);
res += rank;
return res;
}
Handle(Expr_GeneralExpression) Expr_FunctionDerivative::Expression() const
{
return myExp;
}
void Expr_FunctionDerivative::UpdateExpression()
{
if (myFunction->IsKind(STANDARD_TYPE(Expr_FunctionDerivative))) {
Handle(Expr_FunctionDerivative) defunc = Handle(Expr_FunctionDerivative)::DownCast(myFunction);
defunc->UpdateExpression();
myExp = defunc->Expression()->NDerivative(myDerivate,myDegree);
}
else {
Handle(Expr_NamedFunction) nafunc = Handle(Expr_NamedFunction)::DownCast(myFunction);
myExp = nafunc->Expression()->NDerivative(myDerivate,myDegree);
}
}