Skip to content

Commit

Permalink
BAEL-2797 fixes done for PR :
Browse files Browse the repository at this point in the history
* changed imports removed from other branches
* cobertura plugin removed
* copied packages removed from origin
  • Loading branch information
anilkivilcim.eray committed Apr 8, 2019
1 parent 131db49 commit eae0cee
Show file tree
Hide file tree
Showing 21 changed files with 13 additions and 410 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package com.baeldung.algorithms;

import java.util.Scanner;

import com.baeldung.algorithms.ga.annealing.SimulatedAnnealing;
import com.baeldung.algorithms.ga.ant_colony.AntColonyOptimization;
import com.baeldung.algorithms.ga.binary.SimpleGeneticAlgorithm;

import java.util.Scanner;

public class RunAlgorithm {

public static void main(String[] args) throws InstantiationException, IllegalAccessException {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.baeldung.algorithms;

import com.baeldung.algorithms.ga.ant_colony.AntColonyOptimization;
import org.junit.Assert;
import org.junit.Test;

import com.baeldung.algorithms.ga.ant_colony.AntColonyOptimization;

public class AntColonyOptimizationLongRunningUnitTest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.baeldung.algorithms;

import com.baeldung.algorithms.ga.binary.SimpleGeneticAlgorithm;
import org.junit.Assert;
import org.junit.Test;

import com.baeldung.algorithms.ga.binary.SimpleGeneticAlgorithm;

public class BinaryGeneticAlgorithmLongRunningUnitTest {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package com.baeldung.algorithms;

import com.baeldung.algorithms.ga.annealing.SimulatedAnnealing;
import org.junit.Assert;
import org.junit.Test;

import com.baeldung.algorithms.ga.annealing.SimulatedAnnealing;

public class SimulatedAnnealingLongRunningUnitTest {

Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

import java.util.List;

import com.baeldung.algorithms.mcts.tictactoe.Board;
import com.baeldung.algorithms.mcts.tree.Node;
import com.baeldung.algorithms.mcts.tree.Tree;
import com.baeldung.algorithms.mcts.tictactoe.Board;

public class MonteCarloTreeSearch {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.util.Collections;
import java.util.Comparator;
import java.util.List;

import com.baeldung.algorithms.mcts.tree.Node;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.baeldung.algorithms.mcts.tictactoe;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class Board {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import org.junit.Assert;
import org.junit.Test;
import com.baeldung.algorithms.binarysearch.BinarySearch;

public class BinarySearchUnitTest {

Expand Down
Loading

0 comments on commit eae0cee

Please sign in to comment.