mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
20 lines
250 B
C
20 lines
250 B
C
#include "memInfo.H"
|
|
#include "IOstreams.H"
|
|
#include "List.H"
|
|
#include "vector.H"
|
|
|
|
using namespace Foam;
|
|
|
|
int main()
|
|
{
|
|
memInfo m;
|
|
|
|
Info<< m << endl;
|
|
|
|
List<vector> l(10000000, vector::one);
|
|
|
|
Info<< m.update() << endl;
|
|
|
|
return 0;
|
|
}
|