-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d288c7f
commit 3014a68
Showing
1 changed file
with
17 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,17 @@ | ||
# ftn_psi_pa | ||
Sample codes for Applied algorithms course on Faculty of Technical Sciences, University of Novi Sad | ||
# Metaheuristic algorithms | ||
|
||
### What are these algorithms? | ||
Metaheuristic algorithms are optimization algorithms that are used to address complicated issues that cannot be solved using standard approaches. | ||
|
||
These algorithms are inspired by natural processes such as **genetics, swarm behavior, and evolution**, and they are used to explore a broad search space to identify the global optimum of a problem. | ||
|
||
|
||
### Examples of some metaheuristic algorithms implemented in Julia: | ||
|
||
- [Genetic algorithm](/src/genetic_algorithm) | ||
- [Particle swarm optimization](/src/pso) | ||
|
||
</br> | ||
|
||
TO-DO: | ||
- Ant colony optimization |