-
Notifications
You must be signed in to change notification settings - Fork 93
/
FuzzyIO.cpp
executable file
·116 lines (105 loc) · 2.65 KB
/
FuzzyIO.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
/*
* Robotic Research Group (RRG)
* State University of Piauí (UESPI), Brazil - Piauí - Teresina
*
* FuzzyIO.cpp
*
* Author: AJ Alves <[email protected]>
* Co authors: Dr. Ricardo Lira <[email protected]>
* Msc. Marvin Lemos <[email protected]>
* Douglas S. Kridi <[email protected]>
* Kannya Leal <[email protected]>
*/
#include "FuzzyIO.h"
// CONTRUCTORS
FuzzyIO::FuzzyIO()
{
}
FuzzyIO::FuzzyIO(int index)
{
this->index = index;
this->crispInput = 0.0;
// Initializing pointers with NULL
this->fuzzySets = NULL;
}
// DESTRUCTOR
FuzzyIO::~FuzzyIO()
{
this->cleanFuzzySets(this->fuzzySets);
}
// PUBLIC METHODS
// Method to get the value of index
int FuzzyIO::getIndex()
{
return this->index;
}
// Method to set the value of crispInput
void FuzzyIO::setCrispInput(float crispInput)
{
this->crispInput = crispInput;
}
// Method to get the value of crispInput
float FuzzyIO::getCrispInput()
{
return this->crispInput;
}
// Method to include a new FuzzySet into FuzzyIO
bool FuzzyIO::addFuzzySet(FuzzySet *fuzzySet)
{
// auxiliary variable to handle the operation
fuzzySetArray *newOne;
// allocating in memory
if ((newOne = (fuzzySetArray *)malloc(sizeof(fuzzySetArray))) == NULL)
{
// return false if in out of memory
return false;
}
// building the object
newOne->fuzzySet = fuzzySet;
newOne->next = NULL;
// if it is the first FuzzySet, set it as the head
if (this->fuzzySets == NULL)
{
this->fuzzySets = newOne;
}
else
{
// auxiliary variable to handle the operation
fuzzySetArray *aux = this->fuzzySets;
// find the last element of the array
while (aux != NULL)
{
if (aux->next == NULL)
{
// make the relations between them
aux->next = newOne;
return true;
}
aux = aux->next;
}
}
return true;
}
// Method to reset all FuzzySet of this collection
void FuzzyIO::resetFuzzySets()
{
// auxiliary variable to handle the operation
fuzzySetArray *fuzzySetsAux = this->fuzzySets;
// while not in the end of the array, iterate
while (fuzzySetsAux != NULL)
{
fuzzySetsAux->fuzzySet->reset();
fuzzySetsAux = fuzzySetsAux->next;
}
}
// PROTECTED METHODS
// Method to recursively clean all FuzzySet from memory
void FuzzyIO::cleanFuzzySets(fuzzySetArray *aux)
{
if (aux != NULL)
{
this->cleanFuzzySets(aux->next);
// emptying allocated memory
free(aux);
}
}