ff3d-users
[Top][All Lists]
Advanced

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

Re: [ff3d-users] compiling ff3d


From: Stephane Del Pino
Subject: Re: [ff3d-users] compiling ff3d
Date: Thu, 15 Feb 2007 00:46:34 +0100
User-agent: KMail/1.9.5

Le lundi 5 février 2007 10:18, Emilio Melero García a écrit :
> Now everything runs smoothly (except for the smesh command that makes the
> program exit with bus error, probably the bug you mentioned you saw in
> 1.0-pre09).  
Hello Emilio.

I think I have good news:
- I fixed this bus error bug
- It is now possible to create 'ofstream's 
        ofstream fout = ofstream("filename");
        fout << "write something\n";
        fout = ofstream("anotherfile");
- Variables are now local: this means that variables leave between '{' and '}' 
so refinement should work well
        function un = 0;
        do {
           mesh m = ...
           femfunction u(m) = ...
           // ...
           un = u;
        } while (...);
        // 'u' and 'm' variables are destroyed at each iteration but there 
values are
        // stored trough 'un'

This is provided in the cvs release.

Best regards,
Stéphane.





reply via email to

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