help-gplusplus
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

g++ parsing q


From: Paul Schneider
Subject: g++ parsing q
Date: Wed, 23 Mar 2005 21:10:55 +0100
User-agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007

Hello,

I'm transferring mathematical expressions computed by Mathematica with 300+ lines to C++. Mathematica has an appropriate function for parsing the expressions into C code (As an example the mathematica expression x^2 gets transformed into pow(x, 2)). Before I start running into problems I would like to know if there is some recursion limit with brackets etc. that I might encounter with g++. The resulting C style functions would be something like
double f(args) {
        return (
                300+ lines of code
                );
}

with no chance for me to introduce temporaries and break up the happening. As stated above I haven't tried yet. I am very thankful for comments.

Best,

Paul



reply via email to

[Prev in Thread] Current Thread [Next in Thread]