Source code for pymor.parameters.interfaces

# This file is part of the pyMOR project (http://www.pymor.org).
# Copyright 2013-2017 pyMOR developers and contributors. All rights reserved.
# License: BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause)

from pymor.core.interfaces import ImmutableInterface, abstractmethod
from pymor.parameters.base import Parametric


[docs]class ParameterSpaceInterface(ImmutableInterface): """Interface for |Parameter| spaces. Attributes ---------- parameter_type |ParameterType| of the space. """ parameter_type = None @abstractmethod
[docs] def contains(self, mu): """`True` if `mu` is contained in the space.""" pass
[docs]class ParameterFunctionalInterface(ImmutableInterface, Parametric): """Interface for |Parameter| functionals. A parameter functional is simply a function mapping a |Parameter| to a number. """ @abstractmethod
[docs] def evaluate(self, mu=None): """Evaluate the functional for the given |Parameter| `mu`.""" pass
def __call__(self, mu=None): return self.evaluate(mu)