diff --git a/src/main/java/com/thealgorithms/others/CPUalgorithms.java b/src/main/java/com/thealgorithms/others/MemoryManagementAlgorithms.java similarity index 97% rename from src/main/java/com/thealgorithms/others/CPUalgorithms.java rename to src/main/java/com/thealgorithms/others/MemoryManagementAlgorithms.java index 89205f981..a5b5d44ea 100644 --- a/src/main/java/com/thealgorithms/others/CPUalgorithms.java +++ b/src/main/java/com/thealgorithms/others/MemoryManagementAlgorithms.java @@ -5,7 +5,7 @@ package com.thealgorithms.others; import java.util.ArrayList; -public abstract class CPUalgorithms { +public abstract class MemoryManagementAlgorithms { /** * Method to allocate memory to blocks according to CPU algorithms. @@ -26,7 +26,7 @@ public abstract class CPUalgorithms { /** * @author Dekas Dimitrios */ -class BestFitCPU extends CPUalgorithms{ +class BestFitCPU extends MemoryManagementAlgorithms { private static final int NO_ALLOCATION = -255; // if a process has been allocated in position -255, @@ -110,7 +110,7 @@ class BestFitCPU extends CPUalgorithms{ /** * @author Dekas Dimitrios */ -class WorstFitCPU extends CPUalgorithms{ +class WorstFitCPU extends MemoryManagementAlgorithms { private static final int NO_ALLOCATION = -255; // if a process has been allocated in position -255, @@ -177,7 +177,7 @@ class WorstFitCPU extends CPUalgorithms{ /** * @author Dekas Dimitrios */ -class FirstFitCPU extends CPUalgorithms{ +class FirstFitCPU extends MemoryManagementAlgorithms { private static final int NO_ALLOCATION = -255; // if a process has been allocated in position -255, @@ -236,7 +236,7 @@ class FirstFitCPU extends CPUalgorithms{ /** * @author Alexandros Lemonaris */ -class NextFit extends CPUalgorithms{ +class NextFit extends MemoryManagementAlgorithms { private static final int NO_ALLOCATION = -255; // if a process has been allocated in position -255, diff --git a/src/test/java/com/thealgorithms/others/BestFitCPUTest.java b/src/test/java/com/thealgorithms/others/BestFitCPUTest.java index d1ab59165..ecc66da69 100644 --- a/src/test/java/com/thealgorithms/others/BestFitCPUTest.java +++ b/src/test/java/com/thealgorithms/others/BestFitCPUTest.java @@ -16,7 +16,7 @@ class BestFitCPUTest { int [] sizeOfProcesses; ArrayList memAllocation = new ArrayList<>(); ArrayList testMemAllocation ; - CPUalgorithms bestFit = new BestFitCPU(); + MemoryManagementAlgorithms bestFit = new BestFitCPU(); @Test void testFitForUseOfOneBlock() { @@ -73,4 +73,4 @@ class BestFitCPUTest { ); assertEquals(testMemAllocation, memAllocation); } -} \ No newline at end of file +} diff --git a/src/test/java/com/thealgorithms/others/FirstFitCPUTest.java b/src/test/java/com/thealgorithms/others/FirstFitCPUTest.java index 45a501c26..18dae6807 100644 --- a/src/test/java/com/thealgorithms/others/FirstFitCPUTest.java +++ b/src/test/java/com/thealgorithms/others/FirstFitCPUTest.java @@ -16,7 +16,7 @@ class FirstFitCPUTest { int [] sizeOfProcesses; ArrayList memAllocation = new ArrayList<>(); ArrayList testMemAllocation ; - CPUalgorithms firstFit = new FirstFitCPU(); + MemoryManagementAlgorithms firstFit = new FirstFitCPU(); @Test void testFitForUseOfOneBlock() { @@ -73,4 +73,4 @@ class FirstFitCPUTest { ); assertEquals(testMemAllocation, memAllocation); } -} \ No newline at end of file +} diff --git a/src/test/java/com/thealgorithms/others/NextFitTest.java b/src/test/java/com/thealgorithms/others/NextFitTest.java index 27c17eaf0..5a9206df7 100644 --- a/src/test/java/com/thealgorithms/others/NextFitTest.java +++ b/src/test/java/com/thealgorithms/others/NextFitTest.java @@ -16,7 +16,7 @@ class NextFitCPUTest { int [] sizeOfProcesses; ArrayList memAllocation = new ArrayList<>(); ArrayList testMemAllocation ; - CPUalgorithms nextFit = new NextFit(); + MemoryManagementAlgorithms nextFit = new NextFit(); @Test void testFitForUseOfOneBlock() { @@ -73,4 +73,4 @@ class NextFitCPUTest { ); assertEquals(testMemAllocation, memAllocation); } -} \ No newline at end of file +} diff --git a/src/test/java/com/thealgorithms/others/WorstFitCPUTest.java b/src/test/java/com/thealgorithms/others/WorstFitCPUTest.java index cb3f58a4c..5e9e2a783 100644 --- a/src/test/java/com/thealgorithms/others/WorstFitCPUTest.java +++ b/src/test/java/com/thealgorithms/others/WorstFitCPUTest.java @@ -16,7 +16,7 @@ class WorstFitCPUTest { int [] sizeOfProcesses; ArrayList memAllocation = new ArrayList<>(); ArrayList testMemAllocation ; - CPUalgorithms worstFit = new WorstFitCPU(); + MemoryManagementAlgorithms worstFit = new WorstFitCPU(); @Test void testFitForUseOfOneBlock() { @@ -84,4 +84,4 @@ class WorstFitCPUTest { ); assertEquals(testMemAllocation, memAllocation); } -} \ No newline at end of file +}