Source code for bob.fusion.base.algorithm.Empty
#!/usr/bin/env python
from __future__ import absolute_import, division
import logging
from .Algorithm import Algorithm
logger = logging.getLogger(__name__)
class Empty(Algorithm):
"""Empty algorithm
This algorithm does not change scores by itself and only applies the
preprocessors."""