-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunction.cpp
304 lines (263 loc) · 7.18 KB
/
function.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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
#include <iostream>
#include "function.h"
#include <math.h>
Function::Function() {
}
Function::Function(int _id, string _name){
this->id = _id;
this->name = _name;
}
Function::~Function(){
}
void Function::addInput(Variable* _input){
this->inputs.push_back(_input);
}
void Function::setOutput(Variable* _output) {
this->output = _output;
}
vector<Node*> Function::getIncomings() {
}
vector<Node*> Function::getOutgoings() {
}
Multiplication::Multiplication(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Multiplication::doForward() {
(*(this->output)).value = ((*(this->inputs[0])).value)*((*(this->inputs[1])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Multiplication::doBackward(int currentVar) {
if(this->inputs[0]->id==currentVar && this->inputs[1]->id==currentVar ){
return 2*this->inputs[0]->value;
}
else{
if(this->inputs[0]->id==currentVar){
return this->inputs[1]->value;
}
else{
return this->inputs[0]->value;
}
}
}
Addition::Addition(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Addition::doForward(){
(*(this->output)).value = ((*(this->inputs[0])).value) + ((*(this->inputs[1])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Addition::doBackward(int currentVar){
if(this->inputs[0]->id==currentVar && this->inputs[1]->id==currentVar){
return 2;
}
else{
return 1;
}
}
Sine::Sine(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Sine::doForward(){
(*(this->output)).value = sin((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Sine::doBackward(int){
return cos(this->inputs[0]->value);
}
Subtraction::Subtraction(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Subtraction::doForward(){
(*(this->output)).value = ((*(this->inputs[0])).value) - ((*(this->inputs[1])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Subtraction::doBackward(int currentVar){
if(this->inputs[0]->id==currentVar && this->inputs[1]->id==currentVar){
return 0;
}
else{
if(this->inputs[0]->id==currentVar){
return 1;
}
else{
return -1;
}
}
}
Division::Division(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Division::doForward(){
(*(this->output)).value = ((*(this->inputs[0])).value)/((*(this->inputs[1])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Division::doBackward(int currentVar){
if(this->inputs[0]->id==currentVar && this->inputs[1]->id==currentVar){
return 0;
}
else{
// f(x) = x/a
if(this->inputs[0]->id==currentVar){
return 1/(this->inputs[1]->value);
}
//f(x) = a/x
else{
//return (-this->inputs[0]->value)*pow(this->inputs[1]->value,-2);
return (-this->inputs[0]->value)/pow(this->inputs[1]->value,2);
}
}
}
Cosine::Cosine(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Cosine::doForward(){
(*(this->output)).value = cos((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Cosine::doBackward(int){
return -sin(this->inputs[0]->value);
}
Identity::Identity(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Identity::doForward(){
(*(this->output)).value = (*(this->inputs[0])).value;
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Identity::doBackward(int){
return 1;
}
Tangent::Tangent(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Tangent::doForward(){
(*(this->output)).value = tan((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Tangent::doBackward(int){
return 1/pow(cos(this->inputs[0]->value),2);
}
ArcCosine::ArcCosine(int _id, string _name){
this->id = _id;
this->name = _name;
}
void ArcCosine::doForward(){
(*(this->output)).value = acos((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double ArcCosine::doBackward(int){
return (-1)/(sqrt(1-pow(this->inputs[0]->value,2)));
}
ArcSine::ArcSine(int _id, string _name){
this->id = _id;
this->name = _name;
}
void ArcSine::doForward(){
(*(this->output)).value = asin((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double ArcSine::doBackward(int){
return 1/(sqrt(1-pow(this->inputs[0]->value,2)));
}
ArcTangent::ArcTangent(int _id, string _name){
this->id = _id;
this->name = _name;
}
void ArcTangent::doForward(){
(*(this->output)).value = atan((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double ArcTangent::doBackward(int){
return 1/(1+pow(this->inputs[0]->value,2));
}
Exponential::Exponential(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Exponential::doForward(){
(*(this->output)).value = exp((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Exponential::doBackward(int){
return exp(this->inputs[0]->value);
}
Log::Log(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Log::doForward(){
(*(this->output)).value = log((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Log::doBackward(int){
return 1/this->inputs[0]->value;
}
Log10::Log10(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Log10::doForward(){
(*(this->output)).value = log10((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Log10::doBackward(int){
return 1/((this->inputs[0]->value)*(log(10)));
}
Power::Power(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Power::doForward(){
(*(this->output)).value = pow((*(this->inputs[0])).value,(*(this->inputs[1])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Power::doBackward(int currentVar){
if(this->inputs[0]->id==currentVar && this->inputs[1]->id==currentVar){
return (pow(this->inputs[0]->value,this->inputs[0]->value))*(log(this->inputs[0]->value)+1);
}
else{
//polinomial derivation : x^a -> a*x^(a-1)
if(this->inputs[0]->id==currentVar){
return (this->inputs[1]->value)*(pow(this->inputs[0]->value,this->inputs[1]->value - 1));
}
//exponential function derivation : a^x -> a^x * ln(a)
else{
return pow(this->inputs[0]->value,this->inputs[1]->value)*(log(this->inputs[0]->value));
}
}
}
Sqrt::Sqrt(int _id, string _name){
this->id = _id;
this->name = _name;
}
void Sqrt::doForward(){
(*(this->output)).value = sqrt((*(this->inputs[0])).value);
(*(this->output)).initialized = 1;
this->processed = 1;
}
double Sqrt::doBackward(int){
return 1/(2*sqrt(this->inputs[0]->value));
}