mirror of
https://github.com/bspeice/itcs3146-project
synced 2024-11-09 17:48:18 -05:00
6 lines
141 B
Java
6 lines
141 B
Java
interface baseAlgorithm{
|
|
|
|
void allocate(int jobID, int jobSize, int jobTime);
|
|
void deallocate(int jobSize, int beginningLocation);
|
|
}
|