bnm
09/18/2024, 9:53 AMMember2Group(U)
returns all the groups for which U is a direct member
- Group2Group(G)
returns all the descendants of group G
- These groups are implemented using data structures optimized for set operations
- If the intersection of the results from Member2Group and Group2Group is non-empty, then U is a member of G
- Though not explicitly stated in the paper, a tree is used to map Parent groups to child groups (so as to enumerate all the descendants)vroldanbet
09/18/2024, 9:59 AMbnm
09/18/2024, 10:01 AMCardinality(Intersection(Member2Group(U), Group2Group(G))) != 0
seems quite compute heavyvroldanbet
09/18/2024, 10:03 AMecordell
09/18/2024, 5:57 PM