There is a ground set bool
).
We are given a set of implications, i.e., results of the form
This is useful to visualize, e.g., implications between fairness notions in fair allocation. Here the ground set is the set of all allocations across all fair division instances, and the predicates are fairness notions.
We look at a more complicated version of this problem, where the implications are conditional.
Formally, we are given a set family
This finds applications in fair allocation since many results are conditional,
i.e., envy-freeness implies proportionality only for sub-additive valuations.
We would like to infer all conditional predicates using transitive closure,
and given a set
For the fair allocation problem, fairDiv/indiv-family.json
describes the family fairDiv/indiv-goods.json
describes the predicates and implications.
To return all implications for additive valuations, run
node cli.js --sf fairDiv/indiv-family.json -i fairDiv/indiv.json -c '{"valuation": "additive"}'
To output the sequence of implications from ef (envy freeness) to ef1 for general valuations, run
node cli.js --sf fairDiv/indiv-family.json -i fairDiv/indiv.json -c '{}' --pred ef ef1
To be able to run this command, you must first install typescript (npm install -g typescript
)
and then run npx tsc
to compile the typescript code in cpigjs
.