-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.cpp
175 lines (144 loc) · 3.52 KB
/
functions.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
* Copyright 2020 Casey Sanchez
*/
#include "functions.hpp"
CosNode::CosNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("CosNode accepts only 1 argument");
}
}
std::string CosNode::Type() const
{
return "CosNode";
}
std::complex<double> CosNode::Value() const
{
return std::cos(Argument(0)->Value());
}
SinNode::SinNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("SinNode accepts only 1 argument");
}
}
std::string SinNode::Type() const
{
return "SinNode";
}
std::complex<double> SinNode::Value() const
{
return std::sin(Argument(0)->Value());
}
TanNode::TanNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("TanNode accepts only 1 argument");
}
}
std::string TanNode::Type() const
{
return "TanNode";
}
std::complex<double> TanNode::Value() const
{
return std::tan(Argument(0)->Value());
}
AcosNode::AcosNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("AcosNode accepts only 1 argument");
}
}
std::string AcosNode::Type() const
{
return "AcosNode";
}
std::complex<double> AcosNode::Value() const
{
return std::acos(Argument(0)->Value());
}
AsinNode::AsinNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("AsinNode accepts only 1 argument");
}
}
std::string AsinNode::Type() const
{
return "AsinNode";
}
std::complex<double> AsinNode::Value() const
{
return std::asin(Argument(0)->Value());
}
AtanNode::AtanNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("AtanNode accepts only 1 argument");
}
}
std::string AtanNode::Type() const
{
return "AtanNode";
}
std::complex<double> AtanNode::Value() const
{
return std::atan(Argument(0)->Value());
}
SqrtNode::SqrtNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("SqrtNode accepts only 1 argument");
}
}
std::string SqrtNode::Type() const
{
return "SqrtNode";
}
std::complex<double> SqrtNode::Value() const
{
return std::sqrt(Argument(0)->Value());
}
AbsNode::AbsNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("AbsNode accepts only 1 argument");
}
}
std::string AbsNode::Type() const
{
return "AbsNode";
}
std::complex<double> AbsNode::Value() const
{
return std::abs(Argument(0)->Value());
}
ExpNode::ExpNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("ExpNode accepts only 1 argument");
}
}
std::string ExpNode::Type() const
{
return "ExpNode";
}
std::complex<double> ExpNode::Value() const
{
return std::exp(Argument(0)->Value());
}
LnNode::LnNode(std::initializer_list<Scalar> const &arguments) : Node(arguments)
{
if (arguments.size() != 1) {
throw std::invalid_argument("LnNode accepts only 1 argument");
}
}
std::string LnNode::Type() const
{
return "LnNode";
}
std::complex<double> LnNode::Value() const
{
return std::log(Argument(0)->Value());
}