Skip to content

Commit 6b737a7

Browse files
committed
Merge branch 'release/0.1.1'
2 parents 652491d + d48c7d9 commit 6b737a7

File tree

5 files changed

+354
-60
lines changed

5 files changed

+354
-60
lines changed

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@
66
path = src/third_party/PENF
77
url = https://github.com/szaghi/PENF
88
branch = master
9+
[submodule "src/third_party/FLAP"]
10+
path = src/third_party/FLAP
11+
url = https://github.com/szaghi/FLAP
12+
branch = master

fobos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ $DEBUG_GNU = -Og -g3 -Warray-bounds -Wcharacter-truncation -Wline-truncation -
1414
; $DEBUG_GNU = -Og -g3 -Warray-bounds -Wcharacter-truncation -Wline-truncation -Wimplicit-interface -Wimplicit-procedure -Wunderflow -fcheck=all -fmodule-private -ffree-line-length-132 -fimplicit-none -fbacktrace -fdump-core -finit-real=nan -std=f2008 -fall-intrinsics
1515
$DEBUG_INT = -O0 -debug all -check all -warn all -extend-source 132 -traceback -gen-interfaces#-fpe-all=0 -fp-stack-check -fstack-protector-all -ftrapuv -no-ftz -std08
1616
$OPTIMIZE = -O2
17-
$EXDIRS = PENF/src/tests/ pyplot-fortran/src/tests/
17+
$EXDIRS = FLAP/src/tests/ PENF/src/tests/ pyplot-fortran/src/tests/
1818

1919
# main modes
2020
# GNU

src/lib/wenoof_interpolator_js.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ pure subroutine interpolate(self, S, stencil, location, interpolation)
138138
enddo
139139

140140
! computing the convolution
141-
interpolation = 0.
141+
interpolation = 0._R_P
142142
do k = 0, S - 1 ! stencils loop
143143
do f = f1, f2 ! 1 => left interface (i-1/2), 2 => right interface (i+1/2)
144144
interpolation(f + ff) = interpolation(f + ff) + weights(f, k) * self%polynom%poly(f, k)

0 commit comments

Comments
 (0)