Skip to content

Commit

Permalink
Update the example path
Browse files Browse the repository at this point in the history
  • Loading branch information
ykharkov committed Mar 5, 2024
1 parent 5874de9 commit 520c85e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mps_runner.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ function parse_commandline()
"--program-path"
help = "the path to the AHS program JSON file"
arg_type = String
default = joinpath(@__DIR__, "../examples", "ahs_program.json")
default = joinpath(dirname(@__DIR__), "examples", "ahs_program.json")

Check warning on line 23 in src/mps_runner.jl

View check run for this annotation

Codecov / codecov/patch

src/mps_runner.jl#L23

Added line #L23 was not covered by tests
"--interaction-radius"
help = "the interaction radius in meters"
arg_type = Float64
default = 7e-6
"--experiment-path"
help = "the directory in which to store all experiment data"
arg_type = String
default = joinpath("examples", "experiment_braket")
default = joinpath(dirname(@__DIR__), "examples", "experiment_braket")

Check warning on line 31 in src/mps_runner.jl

View check run for this annotation

Codecov / codecov/patch

src/mps_runner.jl#L31

Added line #L31 was not covered by tests
"--cutoff"
help = "cutoff for SVD values in MPS evolution"
arg_type = Float64
Expand Down

0 comments on commit 520c85e

Please sign in to comment.