DiaDes  0.1
DIAgnosis of Discrete-Event System
Accuracy.hh
Go to the documentation of this file.
1 #ifndef __DIADES__AUTOMATA__ACCURACY__HH
2 #define __DIADES__AUTOMATA__ACCURACY__HH
3 #include<string>
4 #include<set>
5 #include"Event.hh"
7 #include"ConnectionMap.hh"
8 #include"SubConfiguration.hh"
9 
10 namespace Diades
11 {
12  namespace Automata
13  {
14 
15 
16 
17  void checkAccuracy(const ObservableComponent & component,
18  const set<Event> & faults,
19  const set<Event> & interactives,
20  string & information, bool & result,
21  set< set<Event> > & minimalCombinations,int depth);
22 
23 
24  void checkSubconfigurationAccuracy(const TopologyMap & topology,
25  const SubConfiguration & subConfiguration,
26  const set<Event> & events,
27  string & information, bool & result,
28  set< set<Event> > & minimalCombinations,
29  int depth, ofstream & toLatex);
30 
31 
32 
33  };
34 };
35 
36 #endif
void checkAccuracy(const ObservableComponent &component, const set< Event > &faults, const set< Event > &interactives, string &information, bool &result, set< set< Event > > &minimalCombinations, int depth)
An observable Component defined as a automaton.
Namespace of the Diades project.
void checkSubconfigurationAccuracy(const TopologyMap &topology, const SubConfiguration &subConfiguration, const set< Event > &events, string &information, bool &result, set< set< Event > > &minimalCombinations, int depth, ofstream &toLatex)