Skip to content
Snippets Groups Projects
Commit a650fae6 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix uninitialized var

parent 89610148
Branches
Tags
No related merge requests found
......@@ -66,10 +66,11 @@ struct OptHomParameters {
OptHomParameters ()
: BARRIER_MIN_METRIC(-1.), BARRIER_MIN(0.1), BARRIER_MAX(2.0), weight(1.),
nbLayers (6) , dim(3) , itMax(300), onlyVisible(true),
nbLayers(6), dim(3), itMax(300), optPassMax(50), onlyVisible(true),
distanceFactor(12), fixBndNodes(false), strategy(0), maxAdaptBlob(3),
adaptBlobLayerFact(2.), adaptBlobDistFact(2.), optPrimSurfMesh(false), optCAD(false),
optCADWeight(1000.), optCADDistMax(1.e22), discrTolerance(1.e-4)
adaptBlobLayerFact(2.), adaptBlobDistFact(2.), optPrimSurfMesh(false),
optCAD(false), optCADWeight(1000.), optCADDistMax(1.e22), discrTolerance(1.e-4),
SUCCESS(0), numBlobs(0), minJac(0.), maxJac(0.), CPU(0.)
{
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment