| 326 | unsigned Lab::getQuantity() const { return manufacture_goal - manufacture_done; } |
| 327 | |
| 328 | void Lab::removeAgent(StateRef<Lab> lab, StateRef<Agent> &agent) |
| 329 | { |
| 330 | lab->assigned_agents.remove(agent); |
| 331 | } |
| 332 | |
| 333 | void Lab::setQuantity(StateRef<Lab> lab, unsigned quantity) |
| 334 | { |
no test coverage detected