-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperationunaire.h
128 lines (104 loc) · 3.62 KB
/
operationunaire.h
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
#ifndef OPERATIONUNAIRE_H
#define OPERATIONUNAIRE_H
#include <QStack>
#include <cmath>
#include "operation.h"
#include "calculatricepolonaise.h"
#include "typeconstanteexception.h"
/**
* Classe definissant un operateur unaire. Herite d'Operation. Declare une variable de type pointeur sur Constante correspondant a l'operande unique.
* La methode getValue est redeclaree virtuelle pure et sera implementee dans des classes heritees comme Cos par exemple.
*/
class OperationUnaire : public Operation
{
protected:
Constante* c;
int mModeDegres;
public:
OperationUnaire(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const = 0;
};
/**
* Classe heritee d'OperationUnaire permettant l'evaluation d'une constante de type expression. La mathode getValue parcourt l'expression et l'evalue a l'aide d'une pile.
*/
class Eval : public OperationUnaire
{
public:
Eval(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const;
};
/**
* Classe heritee d'OperationUnaire permettant de calculer le Cosinus d'une constante.
*/
class Cos : public OperationUnaire
{
public:
Cos(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const;
private:
Constante* cosinus(const Complexe& c) const;
Constante* cosinus(const Rationnel &r) const;
};
/**
* Classe heritee d'OperationUnaire permettant de calculer le Sinus d'une constante.
*/
class Sin : public OperationUnaire
{
public:
Sin(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const;
private:
Constante* sinus(const Complexe& c) const;
Constante* sinus(const Rationnel &r) const;
};
/**
* Classe heritee d'OperationUnaire permettant de calculer la Tangeante d'une constante.
*/
class Tan : public OperationUnaire
{
public:
Tan(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const;
private:
Constante* tangente(const Complexe& c) const;
Constante* tangente(const Rationnel &r) const;
void checkException(float f, bool deg = false) const;
void checkException(const Rationnel& r, bool deg = false) const;
};
/**
* Classe heritee d'OperationUnaire permettant de calculer le Cosinus Hyperbolique d'une constante.
*/
class Cosh : public OperationUnaire
{
public:
Cosh(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const;
private:
Constante* cosinush(const Complexe& c) const;
Constante* cosinush(const Rationnel &r) const;
};
/**
* Classe heritee d'OperationUnaire permettant de calculer le Sinus Hyperbolique d'une constante.
*/
class Sinh : public OperationUnaire
{
public:
Sinh(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const;
private:
Constante* sinush(const Complexe& c) const;
Constante* sinush(const Rationnel &r) const;
};
/**
* Classe heritee d'OperationUnaire permettant de calculer la Tangeante Hyperbolique d'une constante.
*/
class Tanh : public OperationUnaire
{
public:
Tanh(Constante& pc, int pModeConstante, int pModeComplexes, int pModeDegres);
virtual Constante* getValue() const;
private:
Constante* tangenteh(const Complexe& c) const;
Constante* tangenteh(const Rationnel &r) const;
};
#endif // OPERATIONUNAIRE_H