-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #108 from jmejia8/develop
Add GRASP and VNS
- Loading branch information
Showing
54 changed files
with
1,031 additions
and
242 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "Metaheuristics" | ||
uuid = "bcdb8e00-2c21-11e9-3065-2b553b22f898" | ||
authors = ["Jesus Mejia <[email protected]>"] | ||
version = "3.3.5" | ||
version = "3.4.0" | ||
|
||
[deps] | ||
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Combinatorial | ||
|
||
These algorithms can be used for solving combinatorial optimization. | ||
|
||
## BRKGA | ||
|
||
Biased Random Key Genetic Algorithm. | ||
|
||
```@docs | ||
BRKGA | ||
``` | ||
|
||
## GRASP | ||
|
||
Greedy randomized adaptive search procedure. | ||
|
||
```@docs | ||
GRASP | ||
``` | ||
|
||
```@docs | ||
Metaheuristics.GreedyRandomizedContructor | ||
``` | ||
|
||
```@docs | ||
Metaheuristics.construct | ||
``` | ||
|
||
|
||
```@docs | ||
Metaheuristics.compute_cost | ||
``` | ||
|
||
|
||
## VND | ||
|
||
Variable Neighborhood Descent. | ||
|
||
```@docs | ||
VND | ||
``` | ||
|
||
## VNS | ||
|
||
General Variable Neighborhood Search. | ||
|
||
```@docs | ||
VNS | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Index | ||
|
||
List of implemented metaheuristics. The algorithms were implemented based on the | ||
contributor's understanding of the algorithms detailed in the published paper. | ||
|
||
| Algorithm | Objective | Constraints | Large Scale | Batch Evaluation| Structure Name | | ||
|-----------|:-----------|:-----------:|:-----------:| :----------:|------------------------| | ||
| ECA | Single | ✅ | ➖ | ✅ | [`ECA`](@ref) | | ||
| DE | Single | ✅ | ➖ | ✅ | [`DE`](@ref) | | ||
| PSO | Single | ✅ | ➖ | ✅ | [`PSO`](@ref) | | ||
| ABC | Single | ❌ | ➖ | ❌ | [`ABC`](@ref) | | ||
| MOEA/D-DE | Multi | ➖ | ➖ | ❌ | [`MOEAD_DE`](@ref) | | ||
| GSA | Single | ❌ | ❌ | ✅ | [`CGSA`](@ref) | | ||
| SA | Single | ✅ | ➖ | ❌ | [`SA`](@ref) | | ||
| NSGA-II | Multi | ✅ | ➖ | ✅ | [`NSGA2`](@ref) | | ||
| NSGA-III | Many | ✅ | ➖ | ✅ | [`NSGA3`](@ref) | | ||
| SMS-EMOA | Multi | ✅ | ➖ | ✅ | [`SMS_EMOA`](@ref) | | ||
| SPEA2 | Multi | ✅ | ➖ | ✅ | [`SPEA2`](@ref) | | ||
| BCA | Bilevel | ✅ | ❌ | ❌ | [`BCA`](https://jmejia8.github.io/BilevelHeuristics.jl/dev/algorithms/#BCA) | | ||
| MCCGA | Single | ❌ | ❌ | ❌ | [`MCCGA`](@ref) | | ||
| GA | Single | ✅ | ➖ | ✅ | [`GA`](@ref) | | ||
| CCMO | Multi | ✅ | ➖ | ✅ | [`CCMO`](@ref) | | ||
| $\varepsilon$DE | Single | ✅ | ➖ | ✅ | [`εDE`](@ref) | | ||
| BRKGA | Single | ✅ | ➖ | ✅ | [`BRKGA`](@ref) | | ||
|
||
|
||
✅ = supported, | ||
❌ = not supported, | ||
➖ = can be supported by changing default parameters. | ||
|
||
- **Batch Evaluation** = Simultaneous evaluation of multiple solutions (batch) see "[Batch Evaluation](@ref)". | ||
- **Constraints** = Equality and inequality constraints. | ||
- **Large Scale** = High dimensional problems (variables space). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Multi-objective | ||
|
||
## MOEA/D-DE | ||
|
||
Multiobjective optimization problems with complicated Pareto sets by [LiZhang2008](@cite). | ||
|
||
```@docs | ||
MOEAD_DE | ||
``` | ||
|
||
## NSGA-II | ||
|
||
A fast and elitist multiobjective genetic algorithm: NSGA-II by [Deb2002](@cite). | ||
|
||
```@docs | ||
NSGA2 | ||
``` | ||
|
||
|
||
## NSGA-III | ||
|
||
An Evolutionary Many-Objective Optimization Algorithm Using Reference-Point-Based | ||
Nondominated Sorting Approach, Part I: Solving Problems With Box Constraints by [DebJain2014](@cite). | ||
```@docs | ||
NSGA3 | ||
``` | ||
|
||
## SMS-EMOA | ||
|
||
An EMO algorithm using the hypervolume measure as a selection criterion by [Emmerich2005](@cite). | ||
```@docs | ||
SMS_EMOA | ||
``` | ||
|
||
|
||
## SPEA2 | ||
|
||
Improved strength Pareto evolutionary algorithm by [Zitzler2001](@cite). | ||
```@docs | ||
SPEA2 | ||
``` | ||
|
||
## CCMO | ||
|
||
A Coevolutionary Framework for Constrained Multiobjective Optimization Problems | ||
proposed by [Tian2020](@cite). | ||
|
||
```@docs | ||
CCMO | ||
``` | ||
|
Oops, something went wrong.