Hi,<br><br>According to the documentation (section 4.5 of the online tutorial), the following code should produce something like<br><br>z.get_name() = &quot;symbol1&quot;<br><br>but with ginac 1.5.8, I get an empty string.<br>
<br>-----<br>#include &lt;iostream&gt;<br>#include &lt;ginac/ginac.h&gt;<br>using namespace std;<br>using namespace GiNaC;<br> <br>int main()<br>{<br>    symbol z;<br>    cout &lt;&lt; &quot;z.get_name() = \&quot;&quot; &lt;&lt; z.get_name() &lt;&lt; &quot;\&quot;&quot; &lt;&lt; endl;<br>
    return 0;<br>}<br>-----<br><br>In an older version of ginac, this used to work as documented.  Is this a bug, or an expected change in behavior? (Or is it just my installation that is broken?)<br><br>Regards,<br><br>Warren<br>
<br>