Skip to content

Commit

Permalink
updated ford docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Jan 6, 2024
1 parent d57fa08 commit 3e10bae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
files: build/coverage/coverage.info

- name: Build documentation
run: ford ./quadpack.md
run: ford ./ford.md

- name: Deploy Documentation
if: github.ref == 'refs/heads/master'
Expand Down
11 changes: 5 additions & 6 deletions quadpack.md → ford.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project: quadpack
project_dir: ./src
src_dir: ./src
output_dir: ./doc
media_dir: ./media
project_github: https://github.com/jacobwilliams/quadpack
Expand All @@ -13,11 +13,10 @@ docmark: !
display: public
source: true
graph: true
exclude_dir: ./tests
exclude: quadpack_single.F90
quadpack_double.F90
quadpack_quad.F90
quadpack.F90
exclude: **/quadpack_single.F90
**/quadpack_double.F90
**/quadpack_quad.F90
**/quadpack.F90
extra_mods: iso_fortran_env:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORTRAN_005fENV.html

{!README.md!}
4 changes: 2 additions & 2 deletions src/quadpack_generic.F90
Original file line number Diff line number Diff line change
Expand Up @@ -7044,8 +7044,8 @@ subroutine dgtsl(n, c, d, e, b, info)
real(wp), intent(inout) :: e(n) !! the superdiagonal of the tridiagonal matrix.
!! `e(1)` through `e(n-1)` should contain the superdiagonal.
!! on output `e` is destroyed.
real(wp), intent(inout) :: b(n) !! input: is the right hand side vector..
!! output: the solution vector.
real(wp), intent(inout) :: b(n) !! * input: is the right hand side vector..
!! * output: the solution vector.

integer :: k, kb, kp1, nm1, nm2
real(wp) :: t
Expand Down

0 comments on commit 3e10bae

Please sign in to comment.