V <vishal.study@[EMAIL PROTECTED]
> writes:
> Mistyped one thing (shown as CORRECTION below)...but still doesn't
> work ;-(
Did you follow Spiros Bousbouras advice?
The recursive version does this:
i=0 return V
i=1 return mul(mp(V,0,c),c) i.e. mul(V,c)
i=2 return mul(mp(V,1,c),c) i.e. mul(mul(V,c),c)
i=3 return mul(mp(V,2,c),c) i.e. mul(mul(mul(V,c),c),c),c)
You need to repeatedly apply mul to V which is not what your code
does.
--
Ben.


|