itcs3146-project/baseAlgorithm.java

6 lines
155 B
Java
Raw Normal View History

interface baseAlgorithm{
2012-11-14 23:54:24 -05:00
public void allocate(int jobID, int jobSize, int jobTime);
public void deallocate(int jobSize, int beginningLocation);
2012-10-30 20:26:34 -04:00
}