From 520c85e663fc21d452b89b056d2f9bf7f93b6ae5 Mon Sep 17 00:00:00 2001 From: Yaroslav Kharkov Date: Tue, 5 Mar 2024 11:27:15 -0500 Subject: [PATCH] Update the example path --- src/mps_runner.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mps_runner.jl b/src/mps_runner.jl index 00c687a..dcc8c96 100644 --- a/src/mps_runner.jl +++ b/src/mps_runner.jl @@ -20,7 +20,7 @@ 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") "--interaction-radius" help = "the interaction radius in meters" arg_type = Float64 @@ -28,7 +28,7 @@ function parse_commandline() "--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") "--cutoff" help = "cutoff for SVD values in MPS evolution" arg_type = Float64