Minor changes to docstrings

This commit is contained in:
2021-01-07 10:08:14 -06:00
parent 191da25cfc
commit 0377b5b546
2 changed files with 45 additions and 41 deletions

View File

@@ -6,6 +6,10 @@
class Component:
"""
A Component is an object which adds functionality to a LearningSolver.
For better code maintainability, LearningSolver simply delegates most of its
functionality to Components. Each Component is responsible for exactly one ML
strategy.
"""
def before_solve(self, solver, instance, model):