Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
H
handyG
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
McMule
handyG
Commits
72419ce6
Commit
72419ce6
authored
Jun 17, 2020
by
ulrich_y
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use correct cut-off for polylog
parent
78131cc6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/globals.f90
src/globals.f90
+1
-1
src/maths_functions.f90
src/maths_functions.f90
+1
-1
No files found.
src/globals.f90
View file @
72419ce6
...
...
@@ -16,7 +16,7 @@ MODULE globals
! The following parameters control the accuracy of the evaluation
real
(
kind
=
prec
),
protected
::
MPLdelta
=
zero
! if the MPL sum changes less then del it is truncated.
real
(
kind
=
prec
),
protected
::
Lidelta
=
0._prec
! like MPLdelta but for polylogs
real
(
kind
=
prec
),
protected
::
Lidelta
=
zero
! like MPLdelta but for polylogs
real
(
kind
=
prec
),
protected
::
HoelderCircle
=
1.1_prec
! when to apply Hoelder convolution?
integer
,
parameter
::
PolyLogCacheSize
(
2
)
=
(/
5
,
100
/)
! = (/ mmax, n /). At most n polylogs with weight mmax will be cached
...
...
src/maths_functions.f90
View file @
72419ce6
...
...
@@ -183,7 +183,7 @@ CONTAINS
! All remaining terms
m
=
n
+
1
del
=
1._prec
do
while
(
abs
(
del
)
>
zero
)
do
while
(
abs
(
del
)
>
LiDelta
)
zetamn
=
(
-1
)
**
(
m
-
n
)
*
bernoullinumber
(
1
+
m
-
n
)
/
(
1
+
m
-
n
)
fac
=
fac
*
m
*
(
m
-1
)
del
=
zetamn
/
fac
*
logz
**
m
...
...
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