mirror of
https://igit.ific.uv.es/alramos/latticegpu.jl.git
synced 2025-05-14 19:23:42 +02:00
21 lines
698 B
Julia
21 lines
698 B
Julia
using Documenter
|
|
|
|
import Pkg
|
|
Pkg.activate("../")
|
|
using LatticeGPU
|
|
|
|
makedocs(sitename="LatticeGPU", modules=[LatticeGPU], doctest=true,
|
|
pages = [
|
|
"LatticeGPU.jl" => "index.md",
|
|
"Space-time" => "space.md",
|
|
"Groups and algebras" => "groups.md",
|
|
"Fields" => "fields.md",
|
|
"Yang-Mills" => "ym.md",
|
|
"Gradient flow" => "flow.md",
|
|
"Schrödinger Functional" => "sf.md",
|
|
"Spinors" => "spinors.md",
|
|
"Dirac" => "dirac.md",
|
|
"Solvers" => "solvers.md",
|
|
"Input Output" => "io.md"
|
|
],
|
|
repo = "https://igit.ific.uv.es/alramos/latticegpu.jl")
|