mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-19 08:53:08 +05:00
reduce memory limit
- limit = limit * 2; + limit = int ( limit * 1.5 );
This commit is contained in:
parent
621f26055e
commit
711502d1f0
@ -95,7 +95,7 @@ int SMDS_Mesh::CheckMemory(const bool doNotRaise) throw (std::bad_alloc)
|
||||
if ( limit < 20 )
|
||||
limit = 20;
|
||||
else
|
||||
limit = limit * 2;
|
||||
limit = int ( limit * 1.5 );
|
||||
MESSAGE ( "SMDS_Mesh::CheckMemory() memory limit = " << limit << " MB" );
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user