1
0
다음의 미러 https://github.com/bspeice/itcs3146-project 동기화됨 2026-07-01 09:23:13 -04:00

Update the baseAlgorithm class

이 커밋은 다음에 포함됨:
Bradlee Speice
2012-10-30 20:26:34 -04:00
부모 1fd7966e3b
커밋 af99b63284
+6 -8
파일 보기
@@ -1,18 +1,16 @@
public class baseAlgorithm{
int memoryBlock[];
int[] memoryBlock;
void baseAlgorithm(){
void baseAlgorithm(int memorySize){
/* Constructor needed for each algorithm */
memoryBlock = new int[memorySize];
}
void allocate(){
/* This method to be overloaded by each algorithm */
}
void deallocate(){
}
void createThread(){
}
}
}