Skip to content

Commit

Permalink
lower case program name
Browse files Browse the repository at this point in the history
  • Loading branch information
HugoMVale committed May 15, 2024
1 parent 1306d23 commit c1c877d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions example/example1.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PROGRAM EXAMPLE1
PROGRAM example1
USE ODRPACK95
use odrpack95_kinds, only: wp
implicit none
Expand Down Expand Up @@ -130,7 +130,7 @@ PROGRAM EXAMPLE1
WORK=WORK, IWORK=IWORK, &
INFO=INFO)

END PROGRAM EXAMPLE1
END PROGRAM example1

SUBROUTINE FCN(N, M, NP, NQ, &
LDN, LDM, LDNP, &
Expand Down
4 changes: 2 additions & 2 deletions example/example2.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PROGRAM EXAMPLE2
PROGRAM example2
USE ODRPACK95
use odrpack95_kinds, only: wp
implicit none
Expand Down Expand Up @@ -102,7 +102,7 @@ PROGRAM EXAMPLE2
WORK=WORK, IWORK=IWORK, &
INFO=INFO)

END PROGRAM EXAMPLE2
END PROGRAM example2

SUBROUTINE FCN(N, M, NP, NQ, &
LDN, LDM, LDNP, &
Expand Down
4 changes: 2 additions & 2 deletions example/example3.f90
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PROGRAM EXAMPLE3
PROGRAM example3
USE ODRPACK95
use odrpack95_kinds, only: wp
implicit none
Expand Down Expand Up @@ -165,7 +165,7 @@ PROGRAM EXAMPLE3
WORK=WORK, IWORK=IWORK, &
INFO=INFO)

END PROGRAM EXAMPLE3
END PROGRAM example3

SUBROUTINE FCN(N, M, NP, NQ, &
LDN, LDM, LDNP, &
Expand Down
4 changes: 2 additions & 2 deletions example/example4.f90
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
! used the call statement here to solve their problem.
! Curious users are encouraged to remove the bounds in the call statement,
! run the code, and compare the results to the current call statement.
PROGRAM EXAMPLE4
PROGRAM example4
use odrpack95_kinds, only: wp
USE ODRPACK95
IMPLICIT NONE
Expand Down Expand Up @@ -40,7 +40,7 @@ PROGRAM EXAMPLE4
! WRITE (*, *) C, TOUT
! END DO

END PROGRAM EXAMPLE4
END PROGRAM example4

SUBROUTINE FCN(N, M, NP, NQ, LDN, LDM, LDNP, BETA, XPLUSD, IFIXB, IFIXX, LDIFX, &
IDEVAL, F, FJACB, FJACD, ISTOP)
Expand Down

0 comments on commit c1c877d

Please sign in to comment.