Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
On Thursday, 7th July from 1 to 3 pm there will be a maintenance with a short downtime of GitLab.
Open sidebar
TurTLE
TurTLE
Commits
c0a70eb2
Commit
c0a70eb2
authored
Feb 19, 2020
by
Niklas Schnierstein
Committed by
Cristian Lalescu
Feb 19, 2020
Browse files
fixed gamma calculation to straining hypo
parent
cd91901e
Changes
1
Hide whitespace changes
Inline
Side-by-side
cpp/full_code/ornstein_uhlenbeck_process.hpp
View file @
c0a70eb2
...
...
@@ -54,8 +54,7 @@ class ornstein_uhlenbeck_process{
inline
double
gamma
(
double
kabs
)
{
return
this
->
ou_gamma_factor
*
pow
(
kabs
,
2.
/
3.
)
*
this
->
kolmogorov_constant
*
sqrt
(
this
->
kolmogorov_constant
/
this
->
ou_energy_amplitude
);
return
this
->
ou_gamma_factor
*
pow
(
kabs
,
2.
/
3.
)
*
sqrt
(
this
->
ou_energy_amplitude
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment