mirror of
https://github.com/bspeice/itcs3146-project
synced 2024-12-21 22:28:14 -05:00
Finalized tester class, in file, updated log
This commit is contained in:
parent
82f9f94598
commit
964248fda7
40
in.txt
Normal file
40
in.txt
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
2,1029
|
||||||
|
7,364
|
||||||
|
6,3704
|
||||||
|
3,1966
|
||||||
|
2,1644
|
||||||
|
8,4967
|
||||||
|
8,4719
|
||||||
|
7,1022
|
||||||
|
6,4983
|
||||||
|
2,3439
|
||||||
|
2,1330
|
||||||
|
8,2701
|
||||||
|
9,1963
|
||||||
|
10,1615
|
||||||
|
2,1919
|
||||||
|
1,1853
|
||||||
|
5,2029
|
||||||
|
1,835
|
||||||
|
5,4555
|
||||||
|
7,876
|
||||||
|
1,581
|
||||||
|
8,3074
|
||||||
|
5,1937
|
||||||
|
2,1874
|
||||||
|
3,3942
|
||||||
|
10,2605
|
||||||
|
8,2643
|
||||||
|
10,2648
|
||||||
|
3,2724
|
||||||
|
4,4525
|
||||||
|
2,3590
|
||||||
|
3,5034
|
||||||
|
1,1196
|
||||||
|
6,3967
|
||||||
|
3,1146
|
||||||
|
6,4342
|
||||||
|
9,1231
|
||||||
|
6,1547
|
||||||
|
9,3207
|
||||||
|
3,4139
|
13
log.txt
13
log.txt
@ -1,11 +1,12 @@
|
|||||||
Memory Management Log
|
Memory Management Log
|
||||||
---------------------------
|
---------------------------
|
||||||
Job Amount: 200
|
Job Assignment: in.txt
|
||||||
|
Job Amount: 40
|
||||||
Memory Size: 100
|
Memory Size: 100
|
||||||
---------------------------
|
---------------------------
|
||||||
Final Times (All times in milliseconds)
|
Final Times (All times in milliseconds)
|
||||||
Threaded time: 0
|
Threaded time: 5372
|
||||||
Best fit time: 0
|
Best fit time: 3
|
||||||
Worst fit time: 0
|
Worst fit time: 3
|
||||||
First fit time: 28094
|
First fit time: 3705
|
||||||
Next fit time: 26375
|
Next fit time: 3706
|
||||||
|
@ -119,9 +119,13 @@ public class memoryManagement{
|
|||||||
System.out.println("complete");
|
System.out.println("complete");
|
||||||
System.out.println("Elapsed time for next fit allocation algorithm to complete " + jobLength + " jobs is " + timeEnd[4] + " milliseconds");
|
System.out.println("Elapsed time for next fit allocation algorithm to complete " + jobLength + " jobs is " + timeEnd[4] + " milliseconds");
|
||||||
|
|
||||||
System.out.println("Printing to log...");
|
System.out.print("Printing to log...");
|
||||||
out.println("Memory Management Log");
|
out.println("Memory Management Log");
|
||||||
out.println("---------------------------");
|
out.println("---------------------------");
|
||||||
|
if(read.equals(""))
|
||||||
|
out.println("Job Assignment: Random");
|
||||||
|
else
|
||||||
|
out.println("Job Assignment: " + read + ".txt");
|
||||||
out.println("Job Amount: " + jobLength);
|
out.println("Job Amount: " + jobLength);
|
||||||
out.println("Memory Size: " + MEMORYSIZE);
|
out.println("Memory Size: " + MEMORYSIZE);
|
||||||
out.println("---------------------------");
|
out.println("---------------------------");
|
||||||
|
Loading…
Reference in New Issue
Block a user