<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        color:black;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";
        color:black;}
span.EmailStyle17
        {mso-style-type:personal;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:"Consolas","serif";
        color:black;}
span.EmailStyle20
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body bgcolor="white" lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="color:#1F497D">One of the problems is I did not remove “model_parameters::” from the function I took from the cpp generated by tpl2cpp. The other problem is that templates don’t work when there is a different “dvariable”. A
 dvariable cab be both a named_dvariable& and a param_init_number&, but they are not the same in terms of a template. So the following are not the same in the external hpp file<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">dvariable Richards(const dvariable &age, const dvariable &Linf, const dvariable &K, const dvariable &t0, const dvariable &p)<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">{<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">  {<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">    dvariable Length=Linf*pow((1+(1/p)*exp(-K*(age-t0))),-p);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">    return(Length);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">  }<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">}<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">  <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">template <typename type1> <o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">dvariable Richards(const dvariable &age, const type1 &Linf, const type1 &K, const type1 &t0, const type1 &p)<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">{<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">  dvariable Length=Linf*pow((1+(1/p)*exp(-K*(age-t0))),-p);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">  return(Length);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">}<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">In the latter I get the errors<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">igm.cpp: In member function 'virtual void model_parameters::userfunction()':<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">igm.cpp:127:46: error: no matching function for call to 'Richards(prevariable, named_dvariable&, named_dvariable&, param_init_number&, named_dvariable&)'<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">igm.cpp:128:58: error: no matching function for call to 'Richards(prevariable&, named_dvariable&, named_dvariable&, param_init_number&, named_dvariable&)'<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D">igm.cpp:139:49: error: no matching function for call to 'Richards(double&, named_dvariable&, named_dvariable&, param_init_number&, named_dvariable&)'<o:p></o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="color:#1F497D"><o:p> </o:p></span></p>
<div>
<div style="border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in">
<p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext">From:</span></b><span style="font-size:10.0pt;font-family:"Tahoma","sans-serif";color:windowtext"> dave fournier [mailto:davef@otter-rsch.com]
<br>
<b>Sent:</b> Monday, August 11, 2014 3:58 PM<br>
<b>To:</b> Mark Maunder; developers@admb-project.org; admb-users@googlegroups.com<br>
<b>Subject:</b> Re: [Developers] libraries of functions<o:p></o:p></span></p>
</div>
</div>
<p class="MsoNormal"><o:p> </o:p></p>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt">On 08/11/2014 03:49 PM, Mark Maunder wrote:<br>
<br>
Because part of the "job"  of tpl2cpp or tpl2rem is to take a declaration wiht the FUNCTION keyword and<br>
put the appropriate declaration for the class member function into th htp file.<br>
<br>
<br>
<o:p></o:p></p>
</div>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<p class="MsoNormal">Why do I get an error if I put the following function in the file CAPAM_Growth.hpp and include it using #include<CAPAM_Growth.hpp> but if I put it in the tpl using the FUNCTION section I do not? The translator appears to just put it in
 the cpp with no changes<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">dvariable model_parameters::Richards(const dvariable &age, const dvariable &Linf, const dvariable &K, const dvariable &t0, const dvariable &p)<o:p></o:p></p>
<p class="MsoNormal">{<o:p></o:p></p>
<p class="MsoNormal">  {<o:p></o:p></p>
<p class="MsoNormal">    dvariable Length=Linf*pow((1+(1/p)*exp(-K*(age-t0))),-p);<o:p></o:p></p>
<p class="MsoNormal">    return(Length);<o:p></o:p></p>
<p class="MsoNormal">  }<o:p></o:p></p>
<p class="MsoNormal">}<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">The errors I get are <o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">In file included from igm.cpp:3:0:<o:p></o:p></p>
<p class="MsoNormal">./CAPAM_Growth.hpp:130:142: error: invalid use of incomplete type 'struct model_parameters'<o:p></o:p></p>
<p class="MsoNormal">c:/ADMB/admb101-gcc452-win32\include/admodel.h:107:9: error: forward declaration of 'struct model_parameters'<o:p></o:p></p>
<p class="MsoNormal">igm.cpp: In member function 'virtual void model_parameters::userfunction()':<o:p></o:p></p>
<p class="MsoNormal">igm.cpp:127:46: error: no matching function for call to 'Richards(prevariable, named_dvariable&, named_dvariable&, param_init_number&, named_dvariable&)'<o:p></o:p></p>
<p class="MsoNormal">igm.cpp:128:58: error: no matching function for call to 'Richards(prevariable&, named_dvariable&, named_dvariable&, param_init_number&, named_dvariable&)'<o:p></o:p></p>
<p class="MsoNormal">igm.cpp:139:49: error: no matching function for call to 'Richards(double&, named_dvariable&, named_dvariable&, param_init_number&, named_dvariable&)'
<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">The selectivity special issue of the journal Fisheries Research is now published<o:p></o:p></p>
<p class="MsoNormal"><a href="http://www.sciencedirect.com/science/journal/01657836/158/supp/C">http://www.sciencedirect.com/science/journal/01657836/158/supp/C</a><o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal" style="margin-bottom:6.0pt;background:white">The Stock Synthesis special issue of the journal Fisheries Research<o:p></o:p></p>
<p class="MsoNormal" style="margin-bottom:6.0pt;background:white"><a href="http://www.sciencedirect.com/science/journal/01657836/142">http://www.sciencedirect.com/science/journal/01657836/142</a><o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Mark Maunder          <o:p></o:p></p>
<p class="MsoNormal">Head of the Stock Assessment Program                                          
<o:p></o:p></p>
<p class="MsoNormal"><span lang="ES-PE">Inter-American  Tropical Tuna Commission                                     
</span><o:p></o:p></p>
<p class="MsoNormal" style="text-autospace:none"><span lang="ES-TRAD">8901 La Jolla Shores Dr.</span><o:p></o:p></p>
<p class="MsoNormal" style="text-autospace:none"><span lang="ES-TRAD">La Jolla, CA  92037-1508, USA</span><o:p></o:p></p>
<p class="MsoNormal"><span lang="ES-PE">  </span><o:p></o:p></p>
<p class="MsoNormal">Tel: (858) 546-7027<o:p></o:p></p>
<p class="MsoNormal">Fax: (858) 546-7133<o:p></o:p></p>
<p class="MsoNormal"><a href="mailto:mmaunder@iattc.org">mmaunder@iattc.org</a><o:p></o:p></p>
<p class="MsoNormal"><a href="http://www.fisheriesstockassessment.com/TikiWiki/tiki-index.php?page=Mark+Maunder">http://www.fisheriesstockassessment.com/TikiWiki/tiki-index.php?page=Mark+Maunder</a><o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Visit the Center for the Advancement of Population Assessment Methodology at<o:p></o:p></p>
<p class="MsoNormal"><a href="http://www.capamresearch.org/">http://www.capamresearch.org/</a><o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Visit the AD Model Builder project at<o:p></o:p></p>
<p class="MsoNormal"> <a href="http://admb-project.org/">http://admb-project.org/</a><o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">See the following website for information on fisheries stock assessment
<a href="http://www.fisheriesstockassessment.com/">http://www.fisheriesstockassessment.com/</a><o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal"><span style="font-size:12.0pt;font-family:"Times New Roman","serif""><br>
<br>
<br>
<o:p></o:p></span></p>
<pre>_______________________________________________<o:p></o:p></pre>
<pre>Developers mailing list<o:p></o:p></pre>
<pre><a href="mailto:Developers@admb-project.org">Developers@admb-project.org</a><o:p></o:p></pre>
<pre><a href="http://lists.admb-project.org/mailman/listinfo/developers">http://lists.admb-project.org/mailman/listinfo/developers</a><o:p></o:p></pre>
</blockquote>
<p class="MsoNormal"><span style="font-size:12.0pt;font-family:"Times New Roman","serif""><o:p> </o:p></span></p>
</div>
</body>
</html>