mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
05c91872bd
and Post-Processing for numerical simulation. +Supports interoperability between CAD modeling and computation software (CAD-CAE link) +Makes easier the integration of new components on heterogeneous systems for numerical computation +Sets the priority to multi-physics coupling between computation software +Provides a generic user interface, user-friendly and efficient, which helps to reduce the costs and delays of carrying out the studies +Reduces training time to the specific time for learning the software solution which has been based on this platform +All functionalities are accessible through the programmatic integrated Python console This package contains MED module. WWW: http://www.salome-platform.org - Stas Timokhin devel@stasyan.com PR: ports/143469 Submitted by: Stas Timokhin <devel at stasyan.com>
21 lines
697 B
C++
21 lines
697 B
C++
--- src/MULTIPR/MULTIPR_DecimationAccel.cxx.orig 2009-03-18 20:52:30.000000000 +0600
|
|
+++ src/MULTIPR/MULTIPR_DecimationAccel.cxx 2009-06-05 14:46:47.000000000 +0700
|
|
@@ -51,7 +51,7 @@
|
|
//*****************************************************************************
|
|
|
|
|
|
-ostream& operator<<(ostream& pOs, DecimationAccel& pA)
|
|
+std::ostream& operator<<(std::ostream& pOs, DecimationAccel& pA)
|
|
{
|
|
pOs << "DecimationAccel:" << endl;
|
|
return pOs;
|
|
@@ -305,7 +305,7 @@
|
|
}
|
|
|
|
|
|
-ostream& operator<<(ostream& pOs, DecimationAccelGrid& pG)
|
|
+std::ostream& operator<<(std::ostream& pOs, DecimationAccelGrid& pG)
|
|
{
|
|
pOs << "DecimationAccelGrid:" << endl;
|
|
pOs << " Num=" << pG.mNum << endl;
|