Skip to content

Commit

Permalink
details not used yet
Browse files Browse the repository at this point in the history
  • Loading branch information
fedebenelli committed Dec 27, 2023
1 parent 528a5c7 commit 83d8a08
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions app/main.f90
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ program main
call pt_envelopes
call cpu_time(et)
print *, "PT: ", (et - st)*1000, "cpu ms"

call exit

! PX Envelopes
call cpu_time(st)
Expand All @@ -52,6 +54,12 @@ subroutine setup_cli
help="Input file", &
error=cli_error, &
required=.true.)
call cli%add( &
switch="--injection", &
switch_ab="-px", &
help="Trace Px lines", &
error=cli_error, &
required=.false.)
call cli%parse(error=cli_error)

if (cli_error /= 0) stop
Expand Down
6 changes: 3 additions & 3 deletions fpm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ maintainer = "federico.benelli@mi.unc.edu.ar"
copyright = "Copyright 2023, Federico E. Benelli"

[build]
link = ["lapack"]
link = ["blas"]
auto-executables = true
auto-tests = true
auto-examples = true
Expand All @@ -16,7 +16,7 @@ library = false

[dependencies]
stdlib = "*"
minpack= "*"
# minpack= "*"
ftools = { git = "https://github.com/fedebenelli/ftools" }
yaeos = { git = "https://github.com/fedebenelli/yaeos" }
FLAP = { git = "https://github.com/szaghi/FLAP", tag="v1.2.5" }
Expand All @@ -30,4 +30,4 @@ implicit-typing = false # default: false

[preprocess]
[preprocess.cpp]
[preprocess.fypp]
[preprocess.fypp]

0 comments on commit 83d8a08

Please sign in to comment.