From b4c345e6a5fa929ba20eac19183b9c777055f52d Mon Sep 17 00:00:00 2001 From: Gaspard Coulet Date: Wed, 28 Apr 2021 23:12:36 +0200 Subject: Initial commit --- Doc/html/_option_8h_source.html | 132 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 132 insertions(+) create mode 100644 Doc/html/_option_8h_source.html (limited to 'Doc/html/_option_8h_source.html') diff --git a/Doc/html/_option_8h_source.html b/Doc/html/_option_8h_source.html new file mode 100644 index 0000000..c5f4f20 --- /dev/null +++ b/Doc/html/_option_8h_source.html @@ -0,0 +1,132 @@ + + + + + + +Implémentation de l'algorithme de rétropagation sur un réseau neuronal: Option/Option.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Implémentation de l'algorithme de rétropagation sur un réseau neuronal +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Option.h
+
+
+
1 #ifndef _OPTION_H_
2 #define _OPTION_H_
3 #include<string>
4 #include"Type.h"
5 class Option {
6  private :
7  int m_id;
8  std::string m_intitul;
9  std::string m_rac;
10  Type m_type;
11  std::string m_description;
12  public :
13  Option();
14  Option(int id, const std::string &intitul, const std::string &m_rac, const Type::TypeEnum type, const std::string &m_description);
15  int getOptionID() const;
16  Type::TypeEnum getOptionType() const;
17  std::string getOptionInt() const;
18  std::string getOptionRac() const;
19  void setOptionType(Type::TypeEnum t);
20  void setOptionInt(std::string &intitul);
21  void setOptionRac(std::string &rac);
22  void print(std::ostream& os) const;
23 };
24 std::ostream& operator<<(std::ostream& os, Option o);
25 #endif
void setOptionRac(std::string &rac)
Definition: Option.cpp:56
+
void setOptionType(Type::TypeEnum t)
Definition: Option.cpp:46
+
std::string getOptionRac() const
Definition: Option.cpp:40
+
void setOptionInt(std::string &intitul)
Definition: Option.cpp:51
+
Definition: Type.h:6
+
Type::TypeEnum getOptionType() const
Definition: Option.cpp:30
+
int getOptionID() const
Definition: Option.cpp:25
+
void print(std::ostream &os) const
Definition: Option.cpp:63
+
Option()
Definition: Option.cpp:10
+
Definition: Option.h:5
+
std::string getOptionInt() const
Definition: Option.cpp:35
+
+
+ + + + -- cgit v1.2.3