diff --git a/staticrod2.cc b/staticrod2.cc index f76c9e1000aae3ddb89fedae8f8d0559256166d2..6d5655451342bdda15e6d319729ce810dc1e801f 100644 --- a/staticrod2.cc +++ b/staticrod2.cc @@ -42,15 +42,15 @@ void setTrustRegionObstacles(double trustRegionRadius, if (dirichletNodes[j*blocksize+k]) continue; - trustRegionObstacles[j].val[2*k] = - (trueObstacles[j].val[2*k] < -1e10) - ? std::min(-trustRegionRadius, trueObstacles[j].val[2*k+1] - trustRegionRadius) - : trueObstacles[j].val[2*k]; + trustRegionObstacles[j].lower(k) = + (trueObstacles[j].lower(k) < -1e10) + ? std::min(-trustRegionRadius, trueObstacles[j].upper(k) - trustRegionRadius) + : trueObstacles[j].lower(k); - trustRegionObstacles[j].val[2*k+1] = - (trueObstacles[j].val[2*k+1] > 1e10) - ? std::max(trustRegionRadius,trueObstacles[j].val[2*k] + trustRegionRadius) - : trueObstacles[j].val[2*k+1]; + trustRegionObstacles[j].upper(k) = + (trueObstacles[j].upper(k) > 1e10) + ? std::max(trustRegionRadius,trueObstacles[j].lower(k) + trustRegionRadius) + : trueObstacles[j].upper(k); } @@ -215,7 +215,7 @@ int main (int argc, char *argv[]) try for (int i=0; i<trueObstacles[toplevel].size(); i++) { trueObstacles[toplevel][i].clear(); //trueObstacles[toplevel][i].val[0] = - x[i][0]; - trueObstacles[toplevel][i].val[1] = 0.1 - x[i][0]; + trueObstacles[toplevel][i].upper(0) = 0.1 - x[i][0]; }