1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-01 10:26:12 +03:00
occt/src/Expr/Expr_UnaryMinus.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

110 lines
3.3 KiB
C++

// Created on: 1991-04-16
// 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.hxx>
#include <Expr_GeneralExpression.hxx>
#include <Expr_NamedUnknown.hxx>
#include <Expr_NotEvaluable.hxx>
#include <Expr_NumericValue.hxx>
#include <Expr_Operators.hxx>
#include <Expr_UnaryMinus.hxx>
#include <Standard_NumericError.hxx>
#include <Standard_OutOfRange.hxx>
#include <Standard_Type.hxx>
#include <TCollection_AsciiString.hxx>
IMPLEMENT_STANDARD_RTTIEXT(Expr_UnaryMinus,Expr_UnaryExpression)
Expr_UnaryMinus::Expr_UnaryMinus(const Handle(Expr_GeneralExpression)& exp)
{
CreateOperand(exp);
}
Handle(Expr_GeneralExpression) Expr_UnaryMinus::ShallowSimplified () const
{
Handle(Expr_GeneralExpression) myexp = Operand();
if (myexp->IsKind(STANDARD_TYPE(Expr_NumericValue))) {
Handle(Expr_NumericValue) myNVexp = Handle(Expr_NumericValue)::DownCast(myexp);
return new Expr_NumericValue(-myNVexp->GetValue());
}
if (myexp->IsKind(STANDARD_TYPE(Expr_UnaryMinus))) {
return myexp->SubExpression(1);
}
Handle(Expr_UnaryMinus) me = this;
return me;
}
Handle(Expr_GeneralExpression) Expr_UnaryMinus::Copy () const
{
return -(Expr::CopyShare(Operand()));
}
Standard_Boolean Expr_UnaryMinus::IsIdentical (const Handle(Expr_GeneralExpression)& Other) const
{
if (Other->IsKind(STANDARD_TYPE(Expr_UnaryMinus))) {
Handle(Expr_GeneralExpression) myexp = Operand();
return myexp->IsIdentical(Other->SubExpression(1));
}
return Standard_False;
}
Standard_Boolean Expr_UnaryMinus::IsLinear () const
{
Handle(Expr_GeneralExpression) myexp = Operand();
return myexp->IsLinear();
}
Handle(Expr_GeneralExpression) Expr_UnaryMinus::Derivative (const Handle(Expr_NamedUnknown)& X) const
{
Handle(Expr_GeneralExpression) myder = Operand();
myder = myder->Derivative(X);
Handle(Expr_UnaryMinus) resu = - myder;
return resu->ShallowSimplified();
}
Handle(Expr_GeneralExpression) Expr_UnaryMinus::NDerivative (const Handle(Expr_NamedUnknown)& X, const Standard_Integer N) const
{
if (N <= 0) {
throw Standard_OutOfRange();
}
Handle(Expr_GeneralExpression) myder = Operand();
myder = myder->NDerivative(X,N);
Handle(Expr_UnaryMinus) resu = - myder;
return resu->ShallowSimplified();
}
Standard_Real Expr_UnaryMinus::Evaluate(const Expr_Array1OfNamedUnknown& vars, const TColStd_Array1OfReal& vals) const
{
return - Operand()->Evaluate(vars,vals);
}
TCollection_AsciiString Expr_UnaryMinus::String() const
{
TCollection_AsciiString str;
Handle(Expr_GeneralExpression) op = Operand();
if (op->NbSubExpressions() > 1) {
str = "-(";
str += op->String();
str += ")";
}
else {
str = "-";
str += op->String();
}
return str;
}