-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsimplecase.h
116 lines (95 loc) · 4.96 KB
/
simplecase.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
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
#ifndef DSL_SIMPLECASE_H
#define DSL_SIMPLECASE_H
// {{SMILE_PUBLIC_HEADER}}
#include <string>
#include <utility>
#include <vector>
class DSL_intArray;
class DSL_network;
class DSL_simpleCase
{
public:
typedef std::vector<std::pair<int, int> > TemporalEvidence; // (slice, outcome)
DSL_simpleCase(DSL_network & network);
DSL_simpleCase(DSL_network & network, const DSL_simpleCase & original);
const std::string& GetName() const { return name; }
int SetName(const std::string& name);
const std::string& GetDescription() const { return description; }
void SetDescription(const std::string& description);
const std::string& GetCategory() const { return category; }
void SetCategory(const std::string& category);
time_t GetCreated() const { return created; }
void SetCreated(time_t t) { created = t; }
time_t GetLastModified() const { return lastModified; }
void SetLastModified(time_t t) { lastModified = t; }
// methods for evidence
int GetNumberOfEvidence() const { return int(evidence.size()); }
int AddEvidence(int handle, int outcome);
int AddEvidence(int handle, double outcome);
int AddEvidence(int handle, const std::vector<double> &virtualEvidence);
int AddEvidence(int handle, const TemporalEvidence & te);
int AppendTemporalEvidence(int handle, int outcome, int slice);
int RemoveEvidence(int index);
int RemoveEvidenceByHandle(int handle) { return RemoveEvidence(HandleToIndex(handle)); }
int SetEvidence(int index, int outcome);
int SetEvidence(int index, double outcome);
int SetEvidence(int index, const TemporalEvidence & te);
int SetEvidence(int index, const std::vector<double> &virtualEvidence);
int SetEvidenceByHandle(int handle, int outcome) { return SetEvidence(HandleToIndex(handle), outcome); }
int SetEvidenceByHandle(int handle, double outcome) { return SetEvidence(HandleToIndex(handle), outcome); }
int SetEvidenceByHandle(int handle, const std::vector<double> &virtualEvidence) { return SetEvidence(HandleToIndex(handle), virtualEvidence); }
int SetEvidenceByHandle(int handle, const TemporalEvidence &te) { return SetEvidence(HandleToIndex(handle), te); }
int GetHandle(int index) const;
int FindNode(int handle) const { return HandleToIndex(handle); }
int GetEvidence(int index, int &handle, int &outcome) const;
int GetEvidence(int index, int &handle, double &outcome) const;
int GetEvidence(int index, int &handle, std::vector<double> &virtualEvidence) const;
int GetEvidence(int index, int &handle, TemporalEvidence &te) const;
int GetEvidenceByHandle(int handle, int &outcome) const { int unused; return GetEvidence(HandleToIndex(handle), unused, outcome); }
int GetEvidenceByHandle(int handle, double &outcome) const { int unused; return GetEvidence(HandleToIndex(handle), unused, outcome); }
int GetEvidenceByHandle(int handle, std::vector<double> &virtualEvidence) const { int unused; return GetEvidence(HandleToIndex(handle), unused, virtualEvidence); }
int GetEvidenceByHandle(int handle, TemporalEvidence &te) const { int unused; return GetEvidence(HandleToIndex(handle), unused, te); }
// target methods
int AddTarget(int handle);
void RemoveTarget(int handle);
int FindTarget(int handle) const;
int GetTarget(int index) const;
bool IsTarget(int handle) const;
int GetNumberOfTargets() const { return int(targets.size()); }
void SetTargets(const std::vector<int> &nodes) { targets = nodes; }
// case <-> network
void CaseToNetwork();
void NetworkToCase();
// methods that are called when changes in the network occur
void OnTypeChanged(int handle, int prevType);
void OnTemporalTypeChanged(int handle, int prevTemporalType);
void OnNodeDeleted(int handle);
void OnOutcomeAdded(int handle, int outcomeIndex);
void OnOutcomeDeleted(int handle, int outcomeIndex);
void OnReorderOutcomes(int handle, const DSL_intArray &newOrder);
private:
bool ValidateIndex(int index) const;
bool ValidateOutcomeIndex(int handle, int outcomeIndex) const;
int HandleToIndex(int handle) const;
int AddEvidenceHelper(int handle);
DSL_network& network; // the network to act on
std::string name; // name of the case, is unique in a case manager
std::string description;
std::string category;
time_t created;
time_t lastModified;
std::vector<int> targets; // handles of target nodes
enum { typeDiscrete, typeContinous, typeVirtual, typeTemporal };
struct Item
{
Item(int h) : handle(h), discrete(-1), continous(0), type(-1) {}
int handle;
int type;
int discrete;
double continous;
std::vector<double> virt;
TemporalEvidence temporal; // slice, outcome index
};
std::vector<Item> evidence; // evidences that are set
};
#endif