Skip to content

Commit eae0cee

Browse files
author
anilkivilcim.eray
committed
BAEL-2797 fixes done for PR :
* changed imports removed from other branches * cobertura plugin removed * copied packages removed from origin
1 parent 131db49 commit eae0cee

21 files changed

Lines changed: 13 additions & 410 deletions

File tree

algorithms-genetic/src/main/java/com/baeldung/algorithms/RunAlgorithm.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
package com.baeldung.algorithms;
22

3+
import java.util.Scanner;
4+
35
import com.baeldung.algorithms.ga.annealing.SimulatedAnnealing;
46
import com.baeldung.algorithms.ga.ant_colony.AntColonyOptimization;
57
import com.baeldung.algorithms.ga.binary.SimpleGeneticAlgorithm;
68

7-
import java.util.Scanner;
8-
99
public class RunAlgorithm {
1010

1111
public static void main(String[] args) throws InstantiationException, IllegalAccessException {

algorithms-genetic/src/test/java/com/baeldung/algorithms/AntColonyOptimizationLongRunningUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.baeldung.algorithms;
22

3-
import com.baeldung.algorithms.ga.ant_colony.AntColonyOptimization;
43
import org.junit.Assert;
54
import org.junit.Test;
65

6+
import com.baeldung.algorithms.ga.ant_colony.AntColonyOptimization;
77

88
public class AntColonyOptimizationLongRunningUnitTest {
99

algorithms-genetic/src/test/java/com/baeldung/algorithms/BinaryGeneticAlgorithmLongRunningUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.baeldung.algorithms;
22

3-
import com.baeldung.algorithms.ga.binary.SimpleGeneticAlgorithm;
43
import org.junit.Assert;
54
import org.junit.Test;
65

6+
import com.baeldung.algorithms.ga.binary.SimpleGeneticAlgorithm;
77

88
public class BinaryGeneticAlgorithmLongRunningUnitTest {
99

algorithms-genetic/src/test/java/com/baeldung/algorithms/SimulatedAnnealingLongRunningUnitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package com.baeldung.algorithms;
22

3-
import com.baeldung.algorithms.ga.annealing.SimulatedAnnealing;
43
import org.junit.Assert;
54
import org.junit.Test;
65

6+
import com.baeldung.algorithms.ga.annealing.SimulatedAnnealing;
77

88
public class SimulatedAnnealingLongRunningUnitTest {
99

algorithms-miscellaneous-1/src/main/java/com/baeldung/algorithms/combination/ApacheCommonsCombinationGenerator.java

Lines changed: 0 additions & 29 deletions
This file was deleted.

algorithms-miscellaneous-1/src/main/java/com/baeldung/algorithms/combination/CombinatoricsLibCombinationGenerator.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

algorithms-miscellaneous-1/src/main/java/com/baeldung/algorithms/combination/GuavaCombinationsGenerator.java

Lines changed: 0 additions & 17 deletions
This file was deleted.

algorithms-miscellaneous-1/src/main/java/com/baeldung/algorithms/combination/IterativeCombinationGenerator.java

Lines changed: 0 additions & 52 deletions
This file was deleted.

algorithms-miscellaneous-1/src/main/java/com/baeldung/algorithms/combination/SelectionRecursiveCombinationGenerator.java

Lines changed: 0 additions & 53 deletions
This file was deleted.

algorithms-miscellaneous-1/src/main/java/com/baeldung/algorithms/combination/SetRecursiveCombinationGenerator.java

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)