Singular_jll.SingularMethod
Singular(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of Singular.

Example

Singular() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Singular_jll.SingularMethod
Singular(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(Singular()) $arguments`)
Julia 1.6
Singular_jll.libparseMethod
libparse(f::Function; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true)

An ExecutableProduct wrapper that supports the execution of libparse.

Example

libparse() do exe
    run(`$exe $arguments`)
end
Julia 1.3
Singular_jll.libparseMethod
libparse(; adjust_PATH::Bool=true, adjust_LIBPATH::Bool=true) -> Cmd

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

Example

run(`$(libparse()) $arguments`)
Julia 1.6