<table cellspacing="0" cellpadding="0" border="0" ><tr><td valign="top" style="font: inherit;">Hi,<br><br>I'm running into a term ordering problem like the one mentioned in this post.<br>http://permalink.gmane.org/gmane.comp.mathematics.ginac.general/1107<br><br>Relevant details about my application are below, for the curious.&nbsp; The short of it, though, is that the C++ code I am generating with ginac is so large (50MB) that the compiler can't handle it, and moreover, the values being represented by ginac symbols are array accesses that the compiler can't optimize away.&nbsp; So I need to create temporary values and do sub-expression elimination on the C++ code just so the compiler can have a chance.&nbsp; I have successfully done this using search-and-replace on the C++ code for other applications, but I guess I was just lucky that ginac printed terms in a consistent order.<br><br>Is this a problem other ginac users have confronted?&nbsp; From the
 answer to the above post, it sounds like I need to write my own print function that can ensure expressions are printed in a predictable order.&nbsp; It looks like I can also inspect the expression tree and possibly do a proper job of common sub-expression elimination.&nbsp; But if there is an easier approach, I'd be very grateful for a pointer or two.<br><br>Thanks,<br>Doug Baker<br><br>-------------------<br>Background Details<br>-------------------<br><br>My application is related to visual odometry.&nbsp; I am computing the gradient and hessian for a function of 10 variables that involves converting quaternions to rotation matrices, applying those matrices to 3D points and projecting those points onto a 2D plane.<br><br>I am generating code with ginac that is initially 50MB of C++ code. (And thank you for ginac being able to handle that monstrosity with such grace.)&nbsp; The input symbols are all array elements (e.g. symbol x("state[t+X]")) or
 function calls (e.g. symbol rTi11("rTi.getValue&lt;1,1&gt;()")).<br><br>If I take the printed output from ginac as is, the C++ compiler can't properly optimize it because it doesn't know that state[t+X] is a constant or that getValue is constant.&nbsp; Moreover, the expressions have huge repeated expressions, and these bog the compiler down, too.<br><br>I've been able to use a simple search-and-replace approach in other problems, and on this one that same approach has gotten me from 50MB to 6MB or so, but the term ordering issue is biting me now.&nbsp; For example, I have one sum (a+b+c+d) that occurs 232608 times.&nbsp; But there are 4! = 24 permutations of that sum that I'd have to replace.&nbsp; It's worse than that, though, because that's not the only expression like it.&nbsp; Some are bigger, like this: (-2.0*sK/sKSIJ+4.0*sK*sS2/pKSIJ2+-4.0*sI*sJ*sS/pKSIJ2). This has something like 72 permutations, not even counting the permutations of pKSIJ and
 pKSIJ2, which are themselves expressions like (a+b+c+d).&nbsp; And not only are there variations on this due to term ordering, similar expressions occur with different variables (e.g. with sJ instead of sK, etc.)&nbsp; So when all these expressions can be output in various orders, it's no longer feasible to generate all the permutations for search-and-replace.<br><br><br>Support NPR 20 seconds at a time.  www.twentysecondsatatime.org</td></tr></table><br>