Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.55K
1 Posted Topic
Re: Probably too late... but when you make the call n.Multiply(n); you are violating the repeated parameter rule by using n twice in this operation. If p > 0, you should make a copy of n then multiply n by n_copy. n.Copy_To(n_copy); n.Multiply(n_copy); Power(n, p-1); |
The End.