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() = "symbol1"<br><br>but with ginac 1.5.8, I get an empty string.<br>
<br>-----<br>#include <iostream><br>#include <ginac/ginac.h><br>using namespace std;<br>using namespace GiNaC;<br> <br>int main()<br>{<br> symbol z;<br> cout << "z.get_name() = \"" << z.get_name() << "\"" << 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>