This package contains a Python implementation of ICoco.
The package version has major and minor versions corresponding to ICoCo implementation.
The patch version number are correction/improvements of this package with respect to the norm.
Simply run:
python3 -m pip install "icoco~=2.0.0"to get the last version of the package implementing version 2.0 of ICoCo.
Your ICoCo class may derive from the {class}abc.ABC class {class}icoco.problem.Problem:
from icoco import Problem
class MyICoCoProblem(Problem):
def __init__(self):
pass
...Once all the {func}abc.abstractmethod have been implmemented, you have a functional minimal API.
- {mod}
icoco.problemmodule: this package contains Python implementation of ICoCo, - {mod}
icoco.exceptionmodule: this module contains Python implementation of ICoCo exceptions, - {mod}
icoco.versionmodule: this module contains version informations, - {mod}
icoco.utilsmodule: this module contains tools for ICoCo introspection.