mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-24 04:50:34 +05:00
bix maxh
This commit is contained in:
parent
486ccac9ad
commit
36a470fe04
@ -249,7 +249,6 @@ namespace netgen
|
||||
double useh = h;
|
||||
if (hl > 0) useh = min2 (h, hl);
|
||||
if (hr > 0) useh = min2 (h, hr);
|
||||
|
||||
Partition(GetSpline(i), mp, useh, elto0, mesh2d, searchtree, i+1);
|
||||
}
|
||||
else
|
||||
|
@ -436,8 +436,7 @@ namespace netgen
|
||||
infile >> numdomains;
|
||||
materials.SetSize(numdomains) ;
|
||||
maxh.SetSize ( numdomains ) ;
|
||||
for ( int i = 0; i < numdomains; i++)
|
||||
maxh[i] = 1000;
|
||||
maxh = 1e99;
|
||||
|
||||
TestComment ( infile );
|
||||
|
||||
@ -467,7 +466,7 @@ namespace netgen
|
||||
if (infile.good())
|
||||
infile.putback (ch);
|
||||
|
||||
maxh[domainnr-1] = flags.GetNumFlag ( "maxh", 1000);
|
||||
maxh[domainnr-1] = flags.GetNumFlag ( "maxh", 1e99);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user