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_tab_8h_source.html | 130 ++++++++++++++++++++++++++++++++++++ 1 file changed, 130 insertions(+) create mode 100644 Doc/html/_option_tab_8h_source.html (limited to 'Doc/html/_option_tab_8h_source.html') diff --git a/Doc/html/_option_tab_8h_source.html b/Doc/html/_option_tab_8h_source.html new file mode 100644 index 0000000..30f7525 --- /dev/null +++ b/Doc/html/_option_tab_8h_source.html @@ -0,0 +1,130 @@ + + + + + + +Implémentation de l'algorithme de rétropagation sur un réseau neuronal: Option/OptionTab.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
Implémentation de l'algorithme de rétropagation sur un réseau neuronal +
+
+
+ + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
OptionTab.h
+
+
+
1 #ifndef _OPTION_TAB_H_
2 #define _OPTION_TAB_H_
3 #include"Option.h"
4 #include"Type.h"
5 #include<string>
6 class OptionTab {
7  private:
8  Option m_Tab[10];
9  size_t m_nb_options;
10  public:
11  OptionTab();
12  void addOption(const Option &opt);
13  void printOptions() const;
14  int getOptionID(const std::string &opt) const;
15  Type::TypeEnum getArgument(const std::string &opt) const;
16  std::string getRaccour(const std::string &opt) const;
17  std::string getTypeOption(const std::string &opt) const;
18  std::string getIntitul(const std::string &opt) const;
19 };
20 #endif
OptionTab()
Definition: OptionTab.cpp:10
+
Type::TypeEnum getArgument(const std::string &opt) const
Definition: OptionTab.cpp:56
+
void printOptions() const
Definition: OptionTab.cpp:30
+
int getOptionID(const std::string &opt) const
Definition: OptionTab.cpp:40
+
Definition: OptionTab.h:6
+
void addOption(const Option &opt)
Definition: OptionTab.cpp:16
+
Definition: Option.h:5
+
std::string getRaccour(const std::string &opt) const
Definition: OptionTab.cpp:72
+
std::string getIntitul(const std::string &opt) const
Definition: OptionTab.cpp:88
+
+
+ + + + -- cgit v1.2.3