Warnings on vc14 were eliminated
[occt.git] / src / Expr / Expr_Cosh.cxx
1 // Created on: 1991-05-27
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_ArgCosh.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_Cosh,Expr_UnaryExpression)
33
34 Expr_Cosh::Expr_Cosh(const Handle(Expr_GeneralExpression)& exp)
35 {
36   CreateOperand(exp);
37 }
38
39 Handle(Expr_GeneralExpression) Expr_Cosh::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(Cosh(myNVexp->GetValue()));
45   }
46   if (myexp->IsKind(STANDARD_TYPE(Expr_ArgCosh))) {
47     return myexp->SubExpression(1);
48   }
49   Handle(Expr_Cosh) me = this;
50   return me;
51 }
52
53 Handle(Expr_GeneralExpression) Expr_Cosh::Copy () const
54 {
55   return new Expr_Cosh(Expr::CopyShare(Operand()));
56 }
57
58 Standard_Boolean Expr_Cosh::IsIdentical (const Handle(Expr_GeneralExpression)& Other) const
59 {
60   if (Other->IsKind(STANDARD_TYPE(Expr_Cosh))) {
61     Handle(Expr_GeneralExpression) myexp = Operand();
62     return myexp->IsIdentical(Other->SubExpression(1));
63   }
64   return Standard_False;
65 }
66
67 Standard_Boolean Expr_Cosh::IsLinear () const
68 {
69   return !ContainsUnknowns();
70 }
71
72 Handle(Expr_GeneralExpression) Expr_Cosh::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_Sinh) firstder = new Expr_Sinh(Expr::CopyShare(myexp));
80
81   Handle(Expr_Product) resu = firstder->ShallowSimplified() * myder;
82   return resu->ShallowSimplified();
83 }
84
85 Standard_Real Expr_Cosh::Evaluate(const Expr_Array1OfNamedUnknown& vars, const TColStd_Array1OfReal& vals) const
86 {
87   Standard_Real val = Operand()->Evaluate(vars,vals);
88   return (::Exp(val)+::Exp(-val))/2.0;
89 }
90
91 TCollection_AsciiString Expr_Cosh::String() const
92 {
93   TCollection_AsciiString str("Cosh(");
94   str += Operand()->String();
95   str += ")";
96   return str;
97 }