Commit 61a0c7cf authored by Łukasz Nowak's avatar Łukasz Nowak

- correct docstring for IDivergenceSolver

 - add placeholders for IDeliverySolver and ITargetSolver


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@28495 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a2c0de86
......@@ -30,11 +30,20 @@
from zope.interface import Interface
class IDivergenceSolver(Interface):
"""Divergence Solver
"""
"""Solves divergence between delivery line and related simulation movements"""
def solve(decision_list):
"""Solves divergences on self according to decision_list
decision_list is list of instances of DivergenceDecision class
"""
class IDeliverySolver(Interface):
"""Solves quantity values between delivery line and related simulation movements"""
# placeholder to define
pass
class ITargetSolver(Interface):
"""Solves changes of properties up to simulation tree with taking proper decisions"""
# placeholder to define
pass
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment