mirror of
https://github.com/bspeice/itcs3146-project
synced 2026-05-23 16:20:15 -04: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);
|
|
}
|