def make_node(self, xin): xout = xin.type.make_variable() return Apply(op=self, inputs=[xin], outputs=[xout])
def test(): Apply()