mirror of
https://github.com/bspeice/itcs3146-project
synced 2024-12-22 06:38:23 -05:00
Added variable to set memory for Algorithms
This commit is contained in:
parent
f99f38c655
commit
7051efa9cb
@ -8,6 +8,10 @@ import java.util.Scanner;
|
|||||||
import java.util.StringTokenizer;
|
import java.util.StringTokenizer;
|
||||||
|
|
||||||
public class memoryManagement{
|
public class memoryManagement{
|
||||||
|
|
||||||
|
//added by David Turnbull variable to set memory for algorithms
|
||||||
|
public static int memory = 1024;
|
||||||
|
|
||||||
public static void main(String args[])throws Exception{
|
public static void main(String args[])throws Exception{
|
||||||
final int JOBAMOUNT = 1000;
|
final int JOBAMOUNT = 1000;
|
||||||
final int MEMORYSIZE = 10000;
|
final int MEMORYSIZE = 10000;
|
||||||
|
Loading…
Reference in New Issue
Block a user