Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-elasticity
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
agnumpde
dune-elasticity
Merge requests
!11
The source project of this merge request has been removed.
Move definition of Trustregion out of else-branch
Expand sidebar
Closed
Move definition of Trustregion out of else-branch
(removed):master
into
master
Overview
0
Commits
6
Pipelines
0
Changes
1
Closed
Move definition of Trustregion out of else-branch
lisa_julia.nebel_at_tu-dresden.de
requested to merge
(removed):master
into
master
Jun 24, 2019
Overview
0
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
master
version 3
3bf66596
Jul 22, 2019
version 2
709bfe8a
Jul 19, 2019
version 1
7617467a
Jun 24, 2019
master (base)
and
version 1
latest version
4692dccd
6 commits,
Jul 22, 2019
version 3
3bf66596
5 commits,
Jul 22, 2019
version 2
709bfe8a
4 commits,
Jul 19, 2019
version 1
7617467a
1 commit,
Jun 24, 2019
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dune/elasticity/common/trustregionsolver.cc
+
1
−
1
View file @ 7617467a
Show full file
@@ -248,11 +248,11 @@ void TrustRegionSolver<BasisType,VectorType>::solve()
BasisType
basis
(
grid_
->
levelGridView
(
grid_
->
maxLevel
()));
BasisType
coarseBasis
(
grid_
->
levelGridView
(
0
));
std
::
vector
<
BoxConstraint
<
typename
VectorType
::
field_type
,
blocksize
>>
coarseTrustRegionObstacles
(
coarseBasis
.
size
());
MaxNormTrustRegion
<
blocksize
>
trustRegion
(
basis
.
size
(),
initialTrustRegionRadius_
);
int
numLevels
=
grid_
->
maxLevel
()
+
1
;
auto
&
levelOp
=
mgSetup_
->
levelOps_
;
#endif
MaxNormTrustRegion
<
blocksize
>
trustRegion
(
basis
.
size
(),
initialTrustRegionRadius_
);
std
::
vector
<
BoxConstraint
<
field_type
,
blocksize
>
>
trustRegionObstacles
;
Loading