From ad281a9dc12f8b7278b15ec5c85eba0d1eeb6a3c Mon Sep 17 00:00:00 2001 From: Erel Segal-Halevi Date: Fri, 17 Nov 2023 13:51:17 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7e7bc6..dd71e2e 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ To activate a fair division algorithm, first construct a `fairpyx.instance`: valuations = {"Alice": {"w":11,"x":22,"y":44,"z":0}, "George": {"w":22,"x":11,"y":66,"z":33}} instance = fairpyx.Instance(valuations=valuations) -An instance can have other fields, such as: agent capacities, item capacities, agent conflicts and item conflicts. These fields are used by some of the algorithms. See [instances.py](fairpyx/instance.py) for details. +An instance can have other fields, such as: agent capacities, item capacities, agent conflicts and item conflicts. These fields are used by some of the algorithms. See [instances.py](fairpyx/instances.py) for details. Then, use the function `fairpyx.divide` to run an algorithm on the instance. For example: