Upload README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# viet-robot-errand-scheduler
|
| 2 |
+
|
| 3 |
+
A tiny heuristic scheduler that assigns household errands to parts of the
|
| 4 |
+
day (morning/afternoon/evening) while trying to keep high priority errands
|
| 5 |
+
in their requested slots.
|
| 6 |
+
|
| 7 |
+
Function:
|
| 8 |
+
|
| 9 |
+
```python
|
| 10 |
+
schedule_errands(errands: list[Errand], max_per_part: int = 3) -> list[ErrandDecision]
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
## License
|
| 14 |
+
|
| 15 |
+
MIT
|