Check for available resources in line with each resource in the claim vector
(self)
| 66 | ] |
| 67 | |
| 68 | def __available_resources(self) -> list[int]: |
| 69 | """ |
| 70 | Check for available resources in line with each resource in the claim vector |
| 71 | """ |
| 72 | return np.array(self.__claim_vector) - np.array( |
| 73 | self.__processes_resource_summation() |
| 74 | ) |
| 75 | |
| 76 | def __need(self) -> list[list[int]]: |
| 77 | """ |
no test coverage detected