@@ -94,13 +94,13 @@ class SCCGraphAnalysis : public Analysis {
94
94
}
95
95
96
96
/* * Get all internal relations of a given SCC. */
97
- const std::set< const Relation*> & getInternalRelations (const std::size_t scc) const {
97
+ const RelationSet & getInternalRelations (const std::size_t scc) const {
98
98
return sccToRelation.at (scc);
99
99
}
100
100
101
101
/* * Get all external output predecessor relations of a given SCC. */
102
- std::set< const Relation*> getExternalOutputPredecessorRelations (const std::size_t scc) const {
103
- std::set< const Relation*> externOutPreds;
102
+ RelationSet getExternalOutputPredecessorRelations (const std::size_t scc) const {
103
+ RelationSet externOutPreds;
104
104
for (const auto & relation : getInternalRelations (scc)) {
105
105
for (const auto & predecessor : precedenceGraph->graph ().predecessors (relation )) {
106
106
if (relationToScc.at (predecessor) != scc && ioType->isOutput (predecessor)) {
@@ -112,8 +112,8 @@ class SCCGraphAnalysis : public Analysis {
112
112
}
113
113
114
114
/* * Get all external non-output predecessor relations of a given SCC. */
115
- std::set< const Relation*> getExternalNonOutputPredecessorRelations (const std::size_t scc) const {
116
- std::set< const Relation*> externNonOutPreds;
115
+ RelationSet getExternalNonOutputPredecessorRelations (const std::size_t scc) const {
116
+ RelationSet externNonOutPreds;
117
117
for (const auto & relation : getInternalRelations (scc)) {
118
118
for (const auto & predecessor : precedenceGraph->graph ().predecessors (relation )) {
119
119
if (relationToScc.at (predecessor) != scc && !ioType->isOutput (predecessor)) {
@@ -125,8 +125,8 @@ class SCCGraphAnalysis : public Analysis {
125
125
}
126
126
127
127
/* * Get all external predecessor relations of a given SCC. */
128
- std::set< const Relation*> getExternalPredecessorRelations (const std::size_t scc) const {
129
- std::set< const Relation*> externPreds;
128
+ RelationSet getExternalPredecessorRelations (const std::size_t scc) const {
129
+ RelationSet externPreds;
130
130
for (const auto & relation : getInternalRelations (scc)) {
131
131
for (const auto & predecessor : precedenceGraph->graph ().predecessors (relation )) {
132
132
if (relationToScc.at (predecessor) != scc) {
@@ -138,8 +138,8 @@ class SCCGraphAnalysis : public Analysis {
138
138
}
139
139
140
140
/* * Get all internal output relations of a given SCC. */
141
- std::set< const Relation*> getInternalOutputRelations (const std::size_t scc) const {
142
- std::set< const Relation*> internOuts;
141
+ RelationSet getInternalOutputRelations (const std::size_t scc) const {
142
+ RelationSet internOuts;
143
143
for (const auto & relation : getInternalRelations (scc)) {
144
144
if (ioType->isOutput (relation )) {
145
145
internOuts.insert (relation );
@@ -149,8 +149,8 @@ class SCCGraphAnalysis : public Analysis {
149
149
}
150
150
151
151
/* * Get all internal relations of a given SCC with external successors. */
152
- std::set< const Relation*> getInternalRelationsWithExternalSuccessors (const std::size_t scc) const {
153
- std::set< const Relation*> internsWithExternSuccs;
152
+ RelationSet getInternalRelationsWithExternalSuccessors (const std::size_t scc) const {
153
+ RelationSet internsWithExternSuccs;
154
154
for (const auto & relation : getInternalRelations (scc)) {
155
155
for (const auto & successor : precedenceGraph->graph ().successors (relation )) {
156
156
if (relationToScc.at (successor) != scc) {
@@ -163,9 +163,8 @@ class SCCGraphAnalysis : public Analysis {
163
163
}
164
164
165
165
/* * Get all internal non-output relations of a given SCC with external successors. */
166
- std::set<const Relation*> getInternalNonOutputRelationsWithExternalSuccessors (
167
- const std::size_t scc) const {
168
- std::set<const Relation*> internNonOutsWithExternSuccs;
166
+ RelationSet getInternalNonOutputRelationsWithExternalSuccessors (const std::size_t scc) const {
167
+ RelationSet internNonOutsWithExternSuccs;
169
168
for (const auto & relation : getInternalRelations (scc)) {
170
169
if (!ioType->isOutput (relation )) {
171
170
for (const auto & successor : precedenceGraph->graph ().successors (relation )) {
@@ -180,8 +179,8 @@ class SCCGraphAnalysis : public Analysis {
180
179
}
181
180
182
181
/* * Get all internal input relations of a given SCC. */
183
- std::set< const Relation*> getInternalInputRelations (const std::size_t scc) const {
184
- std::set< const Relation*> internIns;
182
+ RelationSet getInternalInputRelations (const std::size_t scc) const {
183
+ RelationSet internIns;
185
184
for (const auto & relation : getInternalRelations (scc)) {
186
185
if (ioType->isInput (relation )) {
187
186
internIns.insert (relation );
@@ -192,7 +191,7 @@ class SCCGraphAnalysis : public Analysis {
192
191
193
192
/* * Return if the given SCC is recursive. */
194
193
bool isRecursive (const std::size_t scc) const {
195
- const std::set< const Relation*> & sccRelations = sccToRelation.at (scc);
194
+ const RelationSet & sccRelations = sccToRelation.at (scc);
196
195
if (sccRelations.size () == 1 ) {
197
196
const Relation* singleRelation = *sccRelations.begin ();
198
197
if (precedenceGraph->graph ().predecessors (singleRelation).count (singleRelation) == 0u ) {
@@ -221,7 +220,7 @@ class SCCGraphAnalysis : public Analysis {
221
220
std::vector<std::set<std::size_t >> predecessors;
222
221
223
222
/* * Relations contained in a SCC */
224
- std::vector<std::set< const Relation*> > sccToRelation;
223
+ std::vector<RelationSet > sccToRelation;
225
224
226
225
/* * Recursive scR method for computing SCC */
227
226
void scR (const Relation* relation, std::map<const Relation*, std::size_t >& preOrder, std::size_t & counter,
0 commit comments