<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">My recollection from the Developers meeting is that RETURN_ARRAYS_INCREMENT(); and ..._DECREMENT(); only had to be used with dvariables, not required for random effects variables.<div><br></div><div>S<br><div><div>On 2011-07-12, at 10:45 AM, Mollie Brooks wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Is it ok to use <div>  RETURN_ARRAYS_INCREMENT();</div><div>and   RETURN_ARRAYS_DECREMENT();</div><div>in all versions?</div><div><br><div>If not, what exactly is the rule for when to and when not to use these? </div><div>thanks,</div><div>Mollie</div><div>
<span class="Apple-style-span" style="border-collapse: separate; font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div><span class="Apple-style-span" style="font-size: 12px; "><div><br></div></span></div></span><br class="Apple-interchange-newline">
</div>
<br><div><div>On 12 Jul 2011, at 9:33 AM, dave fournier wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div><br>This is the right way to do this I think.<br><br><br>double Michaelis_Menten1( double x,  const double a,  const double b)<br> {<br>   double y;<br>   y=a*x/(b+x);<br>   return (y);<br>}<br>dvariable Michaelis_Menten1(double x,  const prevariable& a,  const prevariable& b)<br> {<br>   RETURN_ARRAYS_INCREMENT();<br>   dvariable y;<br>   y=a*x/(b+x);<br><br>   RETURN_ARRAYS_DECREMENT();<br>   return (y);<br>}<br><br><br>df1b2variable Michaelis_Menten1(double x,  const df1b2variable& a,  const df1b2variable& b)<br> {<br>  df1b2variable y;<br>   y=a*x/(b+x);<br>   return (y);<br>}<br><br><br>_______________________________________________<br>Users mailing list<br><a href="mailto:Users@admb-project.org">Users@admb-project.org</a><br><a href="http://lists.admb-project.org/mailman/listinfo/users">http://lists.admb-project.org/mailman/listinfo/users</a><br><br></div></blockquote></div><br></div></div>_______________________________________________<br>Users mailing list<br><a href="mailto:Users@admb-project.org">Users@admb-project.org</a><br>http://lists.admb-project.org/mailman/listinfo/users<br></blockquote></div><br></div></body></html>