1
- # Copyright 2015-2018 David Hadka
2
- #
3
- # This file is part of Platypus, a Python module for designing and using
4
- # evolutionary algorithms (EAs) and multiobjective evolutionary algorithms
5
- # (MOEAs).
6
- #
7
- # Platypus is free software: you can redistribute it and/or modify
8
- # it under the terms of the GNU General Public License as published by
9
- # the Free Software Foundation, either version 3 of the License, or
10
- # (at your option) any later version.
11
- #
12
- # Platypus is distributed in the hope that it will be useful,
13
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- # GNU General Public License for more details.
16
- #
17
- # You should have received a copy of the GNU General Public License
18
- # along with Platypus. If not, see <http://www.gnu.org/licenses/>.
19
- from __future__ import absolute_import , division , print_function
20
-
21
- from .core import *
22
- from .algorithms import *
23
- from .evaluator import *
24
- from .experimenter import *
25
- from .indicators import *
26
- from .operators import *
27
- from .problems import *
28
- from .tools import *
29
- from .types import *
30
- from .weights import *
31
-
32
- __version__ = "1.0.2 " # Update setup.py if the version changes!
1
+ # Copyright 2015-2018 David Hadka
2
+ #
3
+ # This file is part of Platypus, a Python module for designing and using
4
+ # evolutionary algorithms (EAs) and multiobjective evolutionary algorithms
5
+ # (MOEAs).
6
+ #
7
+ # Platypus is free software: you can redistribute it and/or modify
8
+ # it under the terms of the GNU General Public License as published by
9
+ # the Free Software Foundation, either version 3 of the License, or
10
+ # (at your option) any later version.
11
+ #
12
+ # Platypus is distributed in the hope that it will be useful,
13
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ # GNU General Public License for more details.
16
+ #
17
+ # You should have received a copy of the GNU General Public License
18
+ # along with Platypus. If not, see <http://www.gnu.org/licenses/>.
19
+ from __future__ import absolute_import , division , print_function
20
+
21
+ from .core import *
22
+ from .algorithms import *
23
+ from .evaluator import *
24
+ from .experimenter import *
25
+ from .indicators import *
26
+ from .operators import *
27
+ from .problems import *
28
+ from .tools import *
29
+ from .types import *
30
+ from .weights import *
31
+
32
+ __version__ = "1.0.4 " # Update setup.py if the version changes!
0 commit comments