Skip to content
Snippets Groups Projects
Commit 7ceaa92b authored by Thomas Toulorge's avatar Thomas Toulorge
Browse files

Fixed min. metric contribution in new HO optimizer

parent 3c62eecb
No related branches found
No related tags found
No related merge requests found
......@@ -65,9 +65,9 @@ bool ObjContribMetricMin<FuncType>::addContrib(double &Obj, alglib::real_1d_arra
_mesh->metricMinAndGradients(iEl, mM, gMM);
for (int l = 0; l < _mesh->nBezEl(iEl); l++) { // Add contribution for each Bezier coeff.
Obj += _weight * FuncType::compute(mM[l]);
const double dfact = _weight * FuncType::computeDiff(mM[l]);
for (int iPC = 0; iPC < _mesh->nPCEl(iEl); iPC++)
gradObj[_mesh->indPCEl(iEl,iPC)] +=
_weight * FuncType::computeDiff(mM[l], gMM[_mesh->indGSJ(iEl, l, iPC)]);
gradObj[_mesh->indPCEl(iEl,iPC)] += dfact * gMM[_mesh->indGSJ(iEl, l, iPC)];
_min = std::min(_min, mM[l]);
_max = std::max(_max, mM[l]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment