Question: user simplify

Question:user simplify

s.py 155 Maple

I have created a user simplify procedure

`simplify\mysimplify` := proc(fun) ... etc ...

It works correctly, but not when i add it in a module.
ie a call as :

with(MyModule); simplify(x^2+x,mysimplify)

dont call mysimplify.
But it works if I call it directly

with(MyModule);
`simplify\mysimplify`(x^2+x);

I think I miss something but i can't point the error. What is the correct declaration ?
(the module is correct, others procedure works fine)

Thank you
 

Please Wait...