Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-tectonic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
podlesny
dune-tectonic
Commits
2e1d937b
Commit
2e1d937b
authored
13 years ago
by
Elias Pipping
Committed by
Elias Pipping
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Handle case x = 0 in the modified gradient method
parent
53cb7ff4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/bisection-example-flexible.cc
+12
-3
12 additions, 3 deletions
src/bisection-example-flexible.cc
with
12 additions
and
3 deletions
src/bisection-example-flexible.cc
+
12
−
3
View file @
2e1d937b
...
@@ -49,6 +49,8 @@ class SampleFunctional {
...
@@ -49,6 +49,8 @@ class SampleFunctional {
SmallVector
minimise
(
const
SmallVector
x
,
unsigned
int
iterations
)
const
{
SmallVector
minimise
(
const
SmallVector
x
,
unsigned
int
iterations
)
const
{
SmallVector
descDir
=
ModifiedGradient
(
x
);
SmallVector
descDir
=
ModifiedGradient
(
x
);
if
(
descDir
==
SmallVector
(
0.0
))
return
SmallVector
(
0.0
);
Dune
::
dverb
<<
"Starting at x with J(x) = "
<<
operator
()(
x
)
<<
std
::
endl
;
Dune
::
dverb
<<
"Starting at x with J(x) = "
<<
operator
()(
x
)
<<
std
::
endl
;
Dune
::
dverb
<<
"Minimizing in direction w with dJ(x,w) = "
Dune
::
dverb
<<
"Minimizing in direction w with dJ(x,w) = "
...
@@ -129,9 +131,16 @@ class SampleFunctional {
...
@@ -129,9 +131,16 @@ class SampleFunctional {
}
}
SmallVector
ModifiedGradient
(
const
SmallVector
x
)
const
{
SmallVector
ModifiedGradient
(
const
SmallVector
x
)
const
{
if
(
x
==
SmallVector
(
0.0
))
if
(
x
==
SmallVector
(
0.0
))
{
// TODO
SmallVector
d
=
SmoothGrad
(
x
);
DUNE_THROW
(
Dune
::
Exception
,
"The case x = 0 is not yet handled."
);
// Decline of the smooth part in the negative gradient direction
double
smoothDecline
=
-
(
d
*
d
);
double
nonlinearDecline
=
func_
.
rightDifferential
(
0.0
)
*
d
.
two_norm
();
// TODO: is this correct?
double
combinedDecline
=
smoothDecline
+
nonlinearDecline
;
return
(
combinedDecline
<
0
)
?
d
:
SmallVector
(
0.0
);
}
SmallVector
const
pg
=
PlusGrad
(
x
);
SmallVector
const
pg
=
PlusGrad
(
x
);
SmallVector
const
mg
=
MinusGrad
(
x
);
SmallVector
const
mg
=
MinusGrad
(
x
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment