0026936: Drawbacks of inlining in new type system in OCCT 7.0 -- automatic
[occt.git] / src / Expr / Expr_Sinh.cxx
1 // Created on: 1991-05-28
2 // Created by: Arnaud BOUZY
3 // Copyright (c) 1991-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <Expr.hxx>
19 #include <Expr_ArgSinh.hxx>
20 #include <Expr_Cosh.hxx>
21 #include <Expr_GeneralExpression.hxx>
22 #include <Expr_NamedUnknown.hxx>
23 #include <Expr_NotEvaluable.hxx>
24 #include <Expr_NumericValue.hxx>
25 #include <Expr_Operators.hxx>
26 #include <Expr_Product.hxx>
27 #include <Expr_Sinh.hxx>
28 #include <Standard_NumericError.hxx>
29 #include <Standard_Type.hxx>
30 #include <TCollection_AsciiString.hxx>
31
32 IMPLEMENT_STANDARD_RTTIEXT(Expr_Sinh,Expr_UnaryExpression)
33
34 Expr_Sinh::Expr_Sinh(const Handle(Expr_GeneralExpression)& exp)
35 {
36   CreateOperand(exp);
37 }
38
39 Handle(Expr_GeneralExpression) Expr_Sinh::ShallowSimplified () const
40 {
41   Handle(Expr_GeneralExpression) myexp = Operand();
42   if (myexp->IsKind(STANDARD_TYPE(Expr_NumericValue))) {
43     Handle(Expr_NumericValue) myNVexp = Handle(Expr_NumericValue)::DownCast(myexp);
44     return new Expr_NumericValue(Sinh(myNVexp->GetValue()));
45   }
46   if (myexp->IsKind(STANDARD_TYPE(Expr_ArgSinh))) {
47     return myexp->SubExpression(1);
48   }
49   Handle(Expr_Sinh) me = this;
50   return me;
51 }
52
53 Handle(Expr_GeneralExpression) Expr_Sinh::Copy () const
54 {
55   return new Expr_Sinh(Expr::CopyShare(Operand()));
56 }
57
58 Standard_Boolean Expr_Sinh::IsIdentical (const Handle(Expr_GeneralExpression)& Other) const
59 {
60   if (Other->IsKind(STANDARD_TYPE(Expr_Sinh))) {
61     Handle(Expr_GeneralExpression) myexp = Operand();
62     return myexp->IsIdentical(Other->SubExpression(1));
63   }
64   return Standard_False;
65 }
66
67 Standard_Boolean Expr_Sinh::IsLinear () const
68 {
69   return !ContainsUnknowns();
70 }
71
72 Handle(Expr_GeneralExpression) Expr_Sinh::Derivative (const Handle(Expr_NamedUnknown)& X) const
73 {
74   if (!Contains(X)) {
75     return  new Expr_NumericValue(0.0);
76   }
77   Handle(Expr_GeneralExpression) myexp = Operand();
78   Handle(Expr_GeneralExpression) myder = myexp->Derivative(X);
79   Handle(Expr_Cosh) firstder = new Expr_Cosh(Expr::CopyShare(myexp));
80   Handle(Expr_Product) resu = firstder->ShallowSimplified() * myder;
81   return resu->ShallowSimplified();
82 }
83
84 Standard_Real Expr_Sinh::Evaluate(const Expr_Array1OfNamedUnknown& vars, const TColStd_Array1OfReal& vals) const 
85 {
86   Standard_Real val = Operand()->Evaluate(vars,vals);
87   return (::Exp(val)-::Exp(-val))/2.0;
88 }
89
90 TCollection_AsciiString Expr_Sinh::String() const
91 {
92   TCollection_AsciiString str("Sinh(");
93   str += Operand()->String();
94   str += ")";
95   return str;
96 }