Dalton_jll.daltonMethod
dalton(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of dalton.

Example

dalton() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Dalton_jll.daltonMethod
dalton(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of dalton. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(dalton()) $arguments`)
Julia 1.6
Dalton_jll.dalton_xMethod
dalton_x(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of dalton_x.

Example

dalton_x() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Dalton_jll.dalton_xMethod
dalton_x(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

An ExecutableProduct wrapper that supports the execution of dalton_x. This wrapper is thread-safe and should be preferred on Julia 1.6+.

Example

run(`$(dalton_x()) $arguments`)
Julia 1.6
Dalton_jll.is_availableFunction
is_available()

Return whether the artifact is available for the current platform.