Skip to content

Commit ef18b26

Browse files
committed
minor fixes
1 parent 2c0977e commit ef18b26

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

fobos

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ $CSTATIC_INT = -cpp -c -assume realloc_lhs
1515
$DEBUG_GNU = -Og -g3 -Warray-bounds -Wcharacter-truncation -Wline-truncation -Wimplicit-interface -Wimplicit-procedure -Wunderflow -Wuninitialized -fcheck=all -fmodule-private -ffree-line-length-132 -fimplicit-none -fbacktrace -fdump-core -finit-real=nan -std=f2008 -fall-intrinsics
1616
$DEBUG_INT = -O0 -debug all -check all -warn all -extend-source 132 -traceback -gen-interfaces -fp-stack-check -fstack-protector-all -ftrapuv -no-ftz -std08
1717
$OPTIMIZE = -O2
18+
$EXDIRS = FACE/src/tests FACE/src/third_party/
19+
FLAP/src/tests/ FLAP/src/third_party/
20+
PENF/src/tests/ PENF/src/third_party/
21+
pyplot-fortran/src/tests/
22+
WenOOF/src/tests/ WenOOF/src/third_party/
1823

1924
# main modes
2025
[foodie-static-opencoarrays-gnu]
@@ -177,7 +182,8 @@ cflags_heritage = True
177182
build_dir = ./build/lib/
178183
mod_dir = mod
179184
obj_dir = obj
180-
src = src/lib/
185+
src = src/
186+
exclude_dirs = $EXDIRS
181187
target = foodie.f90
182188
colors = True
183189
quiet = False

src/lib/foodie_integrator_lmm_ssp_vss.f90

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,6 @@ subroutine integrate_order_2(self, U, previous, Dt, t, autoupdate)
241241
real(R_P), intent(in) :: t(:) !< Times.
242242
logical, optional, intent(in) :: autoupdate !< Perform cyclic autoupdate of previous time steps.
243243
logical :: autoupdate_ !< Perform cyclic autoupdate of previous time steps, dummy var.
244-
integer(I_P) :: s !< Steps counter.
245244
real(R_P) :: omega_ !< Omega coefficient.
246245
real(R_P) :: omega_sq !< Square of omega coefficient.
247246

@@ -262,7 +261,6 @@ subroutine integrate_order_3(self, U, previous, Dt, t, autoupdate)
262261
real(R_P), intent(in) :: t(:) !< Times.
263262
logical, optional, intent(in) :: autoupdate !< Perform cyclic autoupdate of previous time steps.
264263
logical :: autoupdate_ !< Perform cyclic autoupdate of previous time steps, dummy var.
265-
integer(I_P) :: s !< Steps counter.
266264
real(R_P) :: omega_ !< Omega coefficient.
267265

268266
autoupdate_ = .true. ; if (present(autoupdate)) autoupdate_ = autoupdate

src/lib/foodie_integrator_object.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module foodie_integrator_object
2222
procedure, pass(self) :: trigger_error !< Trigger an error.
2323
! deferred methods
2424
procedure(class_name_interface), pass(self), deferred :: class_name !< Return the class name of schemes.
25-
procedure(description_interface), pass(self), deferred :: description !< Return pretty-printed object description.
25+
procedure(description_interface), pass(self), deferred :: description !< Return pretty-printed obj. description.
2626
procedure(assignment_interface), pass(lhs), deferred :: integr_assign_integr !< Operator `=`.
2727
procedure(is_supported_interface), pass(self), deferred :: is_supported !< Return .true. if the integrator class
2828
!< support the given scheme.

0 commit comments

Comments
 (0)