Julia interface to hypre linear solvers (https://github.com/hypre-space/hypre)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
587 B

const liveserver = "liveserver" in ARGS
if liveserver
using Revise
Revise.revise()
end
using Documenter
using HYPRE
makedocs(
sitename = "HYPRE.jl",
format = Documenter.HTML(
canonical = "https://fredrikekre.github.io/HYPRE.jl/stable",
),
modules = [HYPRE],
pages = Any[
"Home" => "index.md",
"matrix-vector.md",
"solvers-preconditioners.md",
"libhypre.md",
],
draft = liveserver,
)
if !liveserver
deploydocs(
repo = "github.com/fredrikekre/HYPRE.jl.git",
push_preview = true,
)
end