-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Python versions in CONTRIBUTING.rst (#16)
Unless the world really needs to, this package will only support Python 3.X versions. Author: ljvmiranda921
- Loading branch information
ljvmiranda921
committed
Aug 4, 2017
1 parent
cefcca7
commit 621aabc
Showing
18 changed files
with
258 additions
and
92 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
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,17 @@ | ||
.wy-menu-vertical header, .wy-menu-vertical p.caption { | ||
color: gold; | ||
} | ||
|
||
.wy-menu-vertical a { | ||
color: white; | ||
} | ||
|
||
.wy-side-nav-search | ||
{ | ||
color: #cacaca; | ||
background: #074E68 | ||
} | ||
|
||
.wy-side-nav-search input[type=text] { | ||
border-color: rgba(7, 78, 104, 0.83); | ||
} |
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,19 @@ | ||
pyswarms.base package | ||
===================== | ||
|
||
.. automodule:: pyswarms.base | ||
|
||
|
||
Submodules | ||
---------- | ||
|
||
pyswarms.base.bs module | ||
------------------------ | ||
|
||
.. automodule:: pyswarms.base.bs | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:private-members: | ||
:special-members: __init__ | ||
|
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,30 @@ | ||
PySwarms package | ||
================= | ||
|
||
.. automodule:: pyswarms | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Base Classes | ||
------------ | ||
|
||
.. toctree:: | ||
|
||
pyswarms.base | ||
|
||
|
||
Optimizers | ||
----------- | ||
|
||
.. toctree:: | ||
|
||
pyswarms.single | ||
|
||
|
||
Utilities | ||
---------- | ||
|
||
.. toctree:: | ||
|
||
pyswarms.utils.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
pyswarms.single package | ||
======================= | ||
|
||
.. automodule:: pyswarms.single | ||
|
||
Submodules | ||
---------- | ||
|
||
pyswarms.single.gb module | ||
-------------------------- | ||
|
||
.. automodule:: pyswarms.single.gb | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:special-members: __init__ | ||
|
||
pyswarms.single.lb module | ||
-------------------------- | ||
|
||
.. automodule:: pyswarms.single.lb | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:private-members: | ||
:special-members: __init__ |
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,19 @@ | ||
pyswarms.utils.functions package | ||
================================ | ||
|
||
.. automodule:: pyswarms.utils.functions | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
|
||
Submodules | ||
---------- | ||
|
||
pyswarms.utils.functions.single_obj module | ||
------------------------------------------- | ||
|
||
.. automodule:: pyswarms.utils.functions.single_obj | ||
:members: | ||
:undoc-members: | ||
:show-inheritance: | ||
:special-members: |
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 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,15 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""Top-level package for PySwarms.""" | ||
""" | ||
Particle Swarm Optimization (PSO) toolkit | ||
========================================= | ||
PySwarms is a particle swarm optimization (PSO) toolkit that enables | ||
researchers to test variants of the PSO technique in different contexts. | ||
Users can define their own function, or use one of the benchmark functions | ||
in the library. It is built on top of :code:`numpy` and :code:`scipy`, and | ||
is very extensible to accommodate other PSO variations. | ||
""" | ||
|
||
__author__ = """Lester James V. Miranda""" | ||
__email__ = 'ljvmiranda@gmail.com' | ||
__version__ = '0.1.0' | ||
__version__ = '0.1.1' |
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,3 +1,8 @@ | ||
""" Base package for `pyswarms` """ | ||
""" | ||
The :mod:`pyswarms.base` module implements base | ||
swarm classes to implement variants of particle swarm optimization. | ||
""" | ||
|
||
from .bs import SwarmBase | ||
from .bs import SwarmBase | ||
|
||
__all__ = ["SwarmBase"] |
Oops, something went wrong.