-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Milestone
Description
All code should be
- PEP8 compliant
- PEP257 compliant
In addition, let's adhere to reasonable standards everywhere in the code:
- all classes should be new style classes (they inherit from
object
) - class names are camel-case:
OptimizationAlgorithm
- attribute and variable names are lowercase with underscore:
method
,optimization_algorithm