8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b02797 commit a31e9fdCopy full SHA for a31e9fd
src/Datalog.h
@@ -326,7 +326,12 @@ struct State
326
327
template <typename RELATION_TYPE>
328
const typename RELATION_TYPE::Set getSet() const {
329
- return convert<RELATION_TYPE>(get<RelationSet<RELATION_TYPE>>(stateRelations).set);
+ return convert<RELATION_TYPE>(getTrackedSet<RELATION_TYPE>());
330
+ }
331
+
33 54FF 2
+ template <typename RELATION_TYPE>
333
+ const typename RELATION_TYPE::TrackedSet getTrackedSet() const {
334
+ return get<RelationSet<RELATION_TYPE>>(stateRelations).set;
335
}
336
332
337
typedef tuple<RelationSize<RELATIONs>...> StateSizesType;
0 commit comments