-
Notifications
You must be signed in to change notification settings - Fork 334
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
ljvmiranda921
committed
Jul 30, 2017
1 parent
9a91647
commit e8f7cd0
Showing
4 changed files
with
67 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
======== | ||
Features | ||
======== | ||
|
||
Currently, PySwarms has implemented the following optimizers: | ||
|
||
Single-Objective Optimizers | ||
--------------------------- | ||
|
||
Continuous | ||
~~~~~~~~~~ | ||
|
||
These optimizers are used on problems involving a continuous space (bounded or unbounded), | ||
and is optimized given a single objective function. | ||
|
||
* :mod:`pyswarms.single.gb` - global-best Particle Swarm Optimization algorithm with a star-topology. Every | ||
particle compares itself with the best-performing particle in the swarm. | ||
* :mod:`pyswarms.single.lb` - local-best Particle Swarm Optimization algorithm with a ring-topology. Every | ||
particle compares itself only with its nearest-neighbours as computed by a distance metric. | ||
|
||
|
||
Utilities | ||
--------- | ||
|
||
Test Functions | ||
~~~~~~~~~~~~~~ | ||
|
||
These functions can be used as benchmark tests for assessing the performance of the optimization | ||
algorithm. | ||
|
||
* :mod:`pyswarms.utils.functions.single_obj` - single-objective test functions |
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.