forked from alvesoaj/eFLL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFuzzy.h
executable file
·71 lines (64 loc) · 1.82 KB
/
Fuzzy.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
/*
* Robotic Research Group (RRG)
* State University of Piaui (UESPI), Brazil - Piauí - Teresina
*
* Fuzzy.h
*
* Author: Msc. Marvin Lemos <[email protected]>
* AJ Alves <[email protected]>
* Co authors: Douglas S. Kridi <[email protected]>
* Kannya Leal <[email protected]>
*/
#ifndef FUZZY_H
#define FUZZY_H
// IMPORTANDO AS BIBLIOTECAS NECESSÁRIAS
#include <inttypes.h>
#include "FuzzyInput.h"
#include "FuzzyOutput.h"
#include "FuzzyRule.h"
// Estrutura de uma matriz de fuzzyInputArray
struct fuzzyInputArray{
FuzzyInput* fuzzyInput;
fuzzyInputArray* next;
};
// Estrutura de uma matriz de fuzzyOutputArray
struct fuzzyOutputArray{
FuzzyOutput* fuzzyOutput;
fuzzyOutputArray* next;
};
// Estrutura de uma lista de FuzzyRule
struct fuzzyRuleArray{
FuzzyRule* fuzzyRule;
fuzzyRuleArray* next;
};
class Fuzzy {
public:
// CONSTRUTORES
Fuzzy();
// DESTRUTOR
~Fuzzy();
// MÉTODOS PÚBLICOS
bool addFuzzyInput(FuzzyInput* fuzzyInput);
bool addFuzzyOutput(FuzzyOutput* fuzzyOutput);
bool addFuzzyRule(FuzzyRule* fuzzyRule);
bool setInput(int fuzzyInputIndex, float crispValue);
bool fuzzify();
bool isFiredRule(int fuzzyRuleIndex);
float defuzzify(int fuzzyOutputIndex);
private:
// VARIÁVEIS PRIVADAS
// ponteiros para gerenciar os arrays de FuzzyInput
fuzzyInputArray* fuzzyInputsCursor;
fuzzyInputArray* fuzzyInputs;
// ponteiros para gerenciar os arrays de FuzzyOutput
fuzzyOutputArray* fuzzyOutputsCursor;
fuzzyOutputArray* fuzzyOutputs;
// ponteiros para gerenciar os arrays de FuzzyRule
fuzzyRuleArray* fuzzyRulesCursor;
fuzzyRuleArray* fuzzyRules;
// MÉTODOS PRIVADOS
void cleanFuzzyInputs(fuzzyInputArray* aux);
void cleanFuzzyOutputs(fuzzyOutputArray* aux);
void cleanFuzzyRules(fuzzyRuleArray* aux);
};
#endif