Skip to content

Commit

Permalink
Update runtests.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq authored Jul 12, 2024
1 parent 6836021 commit e319ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function check_mind(input_file::String)
keyword, values... = split(line)
keyword == "tolerance" && (tolerance = parse(Float64, values[1]))
keyword == "output" && (output_name = values[1])
keyword == "pbc" && (unitcell = (values[1], values[2], values[3]))
keyword == "pbc" && (unitcell = parse.(Float64,values[1:3]))
keyword == "precision" && (precision = values[1])
end
if isnothing(tolerance) || isnothing(output_name)
Expand Down

0 comments on commit e319ac6

Please sign in to comment.