All Downloads are FREE. Search and download functionalities are using the official Maven repository.

Lib.Krakatau.ssa.functionbase.py Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
class SSAFunctionBase(object):
    def __init__(self, parent, arguments):
        self.parent = parent
        self.params = list(arguments)

    def replaceVars(self, rdict):
        self.params = [rdict.get(x,x) for x in self.params]




© 2015 - 2025 Weber Informatics LLC | Privacy Policy