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
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
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
agnumpde
dune-tectonic
Commits
c9205ac9
Commit
c9205ac9
authored
13 years ago
by
Elias Pipping
Committed by
Elias Pipping
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Strip Dune:: from anything within that namespace
parent
56a6b697
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/mynonlinearity.hh
+2
-2
2 additions, 2 deletions
src/mynonlinearity.hh
src/samplefunctional.hh
+14
-14
14 additions, 14 deletions
src/samplefunctional.hh
with
16 additions
and
16 deletions
src/mynonlinearity.hh
+
2
−
2
View file @
c9205ac9
...
@@ -15,8 +15,8 @@
...
@@ -15,8 +15,8 @@
namespace
Dune
{
namespace
Dune
{
template
<
int
dimension
>
class
MyNonlinearity
{
template
<
int
dimension
>
class
MyNonlinearity
{
public:
public:
typedef
Dune
::
FieldVector
<
double
,
dimension
>
VectorType
;
typedef
FieldVector
<
double
,
dimension
>
VectorType
;
typedef
Dune
::
FieldMatrix
<
double
,
dimension
,
dimension
>
MatrixType
;
typedef
FieldMatrix
<
double
,
dimension
,
dimension
>
MatrixType
;
MyNonlinearity
(
NiceFunction
const
&
func
)
:
func_
(
func
)
{}
MyNonlinearity
(
NiceFunction
const
&
func
)
:
func_
(
func
)
{}
...
...
This diff is collapsed.
Click to expand it.
src/samplefunctional.hh
+
14
−
14
View file @
c9205ac9
...
@@ -16,8 +16,8 @@
...
@@ -16,8 +16,8 @@
namespace
Dune
{
namespace
Dune
{
template
<
int
dimension
>
class
SampleFunctional
{
template
<
int
dimension
>
class
SampleFunctional
{
public:
public:
typedef
Dune
::
FieldVector
<
double
,
dimension
>
SmallVector
;
typedef
FieldVector
<
double
,
dimension
>
SmallVector
;
typedef
Dune
::
FieldMatrix
<
double
,
dimension
,
dimension
>
SmallMatrix
;
typedef
FieldMatrix
<
double
,
dimension
,
dimension
>
SmallMatrix
;
typedef
MyNonlinearity
<
dimension
>
NonlinearityType
;
typedef
MyNonlinearity
<
dimension
>
NonlinearityType
;
...
@@ -64,19 +64,19 @@ template <int dimension> class SampleFunctional {
...
@@ -64,19 +64,19 @@ template <int dimension> class SampleFunctional {
return
;
return
;
}
else
if
(
pgx
>=
0
&&
mgx
>=
0
)
{
}
else
if
(
pgx
>=
0
&&
mgx
>=
0
)
{
ret
=
pg
;
ret
=
pg
;
Dune
::
dverb
<<
"## Directional derivative (as per scalar product w/ "
dverb
<<
"## Directional derivative (as per scalar product w/ "
"semigradient): "
<<
-
(
ret
*
mg
)
"semigradient): "
<<
-
(
ret
*
mg
)
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
}
else
if
(
pgx
<=
0
&&
mgx
<=
0
)
{
}
else
if
(
pgx
<=
0
&&
mgx
<=
0
)
{
ret
=
mg
;
ret
=
mg
;
Dune
::
dverb
<<
"## Directional derivative (as per scalar product w/ "
dverb
<<
"## Directional derivative (as per scalar product w/ "
"semigradient): "
<<
-
(
ret
*
pg
)
"semigradient): "
<<
-
(
ret
*
pg
)
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
}
else
{
}
else
{
ret
=
project
(
smoothGradient
(
x
),
x
);
ret
=
project
(
smoothGradient
(
x
),
x
);
Dune
::
dverb
<<
"## Directional derivative (as per scalar product w/ "
dverb
<<
"## Directional derivative (as per scalar product w/ "
"semigradient): "
<<
-
(
ret
*
ret
)
"semigradient): "
<<
-
(
ret
*
ret
)
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
}
}
ret
*=
-
1
;
ret
*=
-
1
;
}
}
...
@@ -156,7 +156,7 @@ void minimise(const Functional J, const typename Functional::SmallVector x,
...
@@ -156,7 +156,7 @@ void minimise(const Functional J, const typename Functional::SmallVector x,
{
// Debug
{
// Debug
Interval
<
double
>
D
;
Interval
<
double
>
D
;
JRest
.
subDiff
(
0
,
D
);
JRest
.
subDiff
(
0
,
D
);
Dune
::
dverb
dverb
<<
"## Directional derivative (as per subdifferential of restriction): "
<<
"## Directional derivative (as per subdifferential of restriction): "
<<
D
[
1
]
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
<<
D
[
1
]
<<
" (coordinates of the restriction)"
<<
std
::
endl
;
assert
(
D
[
1
]
<=
assert
(
D
[
1
]
<=
...
@@ -168,8 +168,8 @@ void minimise(const Functional J, const typename Functional::SmallVector x,
...
@@ -168,8 +168,8 @@ void minimise(const Functional J, const typename Functional::SmallVector x,
int
count
;
int
count
;
// FIXME: The value of x_old should not matter if the factor is 1.0, correct?
// FIXME: The value of x_old should not matter if the factor is 1.0, correct?
double
const
stepsize
=
bisection
.
minimize
(
JRest
,
0.0
,
1.0
,
count
);
double
const
stepsize
=
bisection
.
minimize
(
JRest
,
0.0
,
1.0
,
count
);
Dune
::
dverb
<<
"Number of iterations in the bisection method: "
<<
count
dverb
<<
"Number of iterations in the bisection method: "
<<
count
<<
std
::
endl
;
<<
std
::
endl
;
;
;
corr
=
descDir
;
corr
=
descDir
;
...
...
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