Beispiel #1
0
    def f(x, y):
        a = x * x

        def mula(z):
            return a * z
        _, bprop = J(mula)(J(y))
        return bprop(1)[1]
Beispiel #2
0
    def f(x, y):
        def sqx():
            return x * x

        def mulsqx(z):
            return sqx() * z
        _, bprop = J(mulsqx)(J(y))
        return bprop(1)[1]