output min/max T as scalar

This commit is contained in:
andy
2009-02-11 18:39:34 +00:00
parent c39c135b64
commit d12bf72ddc

View File

@ -12,6 +12,6 @@
thermo.correct();
Info<< "Min/max T:" << min(thermo.T()) << ' ' << max(thermo.T())
<< endl;
Info<< "Min/max T:" << min(thermo.T()).value() << ' '
<< max(thermo.T()).value() << endl;
}