Skip to content

Commit 25947a3

Browse files
committed
Clean info files
2 parents 96c8b38 + 4ea5eef commit 25947a3

File tree

4 files changed

+3
-313
lines changed

4 files changed

+3
-313
lines changed

sbg/info.cpp

-170
This file was deleted.

sbg/info.hpp

-127
This file was deleted.

sbg/sbg_algorithms.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ Exp SBGTopSort<Set>::calculateExp(Util::MD_NAT from, Util::MD_NAT to)
703703
Exp res;
704704

705705
Util::RATIONAL one(1, 1);
706-
for (unsigned int j = 0; j < from.arity(); ++j) {
706+
for (unsigned int j = 0; j < from.size(); ++j) {
707707
Util::RATIONAL r_from(from[j]), r_to(to[j]);
708708
res.emplaceBack(LExp(1, r_to - r_from));
709709
}

sbg/sbg_algorithms.hpp

100755100644
+2-15
Original file line numberDiff line numberDiff line change
@@ -176,24 +176,13 @@ typedef SBGSCC<OrdSet> CanonSCC;
176176

177177
template<typename Set>
178178
struct SBGTopSort {
179+
using Map = SBGMap<Set>;
179180
using PW = PWMap<Set>;
180181

181182
//*** SBG info, constant
182183
member_class(DSBGraph<Set>, dsbg);
183184

184185
//-----------------------------
185-
member_class(PW, smap);
186-
187-
member_class(Set, E);
188-
member_class(PW, mapB);
189-
member_class(PW, mapD);
190-
191-
member_class(Set, unordered);
192-
member_class(Set, not_dependent);
193-
member_class(Set, visitedV);
194-
195-
member_class(Util::MD_NAT, curr);
196-
197186
member_class(bool, debug);
198187

199188
SBGTopSort();
@@ -202,9 +191,7 @@ struct SBGTopSort {
202191
PW calculate();
203192

204193
private:
205-
Exp calculateExp(Util::MD_NAT x1, Util::MD_NAT x2);
206-
void topSortStep();
207-
void updateStatus(Set dom, Exp exp, Set ingoing);
194+
Exp calculateExp(Util::MD_NAT from, Util::MD_NAT to);
208195
};
209196

210197
typedef SBGTopSort<UnordSet> BaseTopSort;

0 commit comments

Comments
 (0)