Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate into the SciMLDocs system #78

Merged
merged 3 commits into from
Jun 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PolyChaos"
uuid = "8d666b04-775d-5f6e-b778-5ac7c70f65a3"
authors = ["Tillmann Mühlpfordt <[email protected]>"]
version = "0.2.6"
version = "0.2.7"

[deps]
AdaptiveRejectionSampling = "c75e803d-635f-53bd-ab7d-544e482d8c75"
Expand Down
23 changes: 3 additions & 20 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Pkg.add("Documenter")
using Documenter, PolyChaos

include("pages.jl")

makedocs(
sitename = "PolyChaos.jl",
format = Documenter.HTML(analytics = "UA-90474609-3",
Expand All @@ -10,26 +12,7 @@ makedocs(
modules = [PolyChaos],
authors = "[email protected]",
doctest = false,
pages = Any[
"index.md",
"type_hierarchy.md",
"Usage" => [
"numerical_integration.md",
"quadrature_rules.md",
"orthogonal_polynomials_canonical.md",
"gaussian_mixture_model.md",
"multiple_discretization.md",
"scalar_products.md",
"Polynomial Chaos" => [ "Basic Usage" => "pce_tutorial.md",
"Chi Squared, One DOF" => "chi_squared_k1.md",
"Chi Squared, Several DOFs" => "chi_squared_k_greater1.md",
"Random ODE" => "random_ode.md"
],
"Optimal Power Flow" => "DCsOPF.md"
],
"math.md",
"functions.md"
]
pages = pages
)


Expand Down
20 changes: 20 additions & 0 deletions docs/pages.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
pages = Any[
"index.md",
"type_hierarchy.md",
"Usage" => [
"numerical_integration.md",
"quadrature_rules.md",
"orthogonal_polynomials_canonical.md",
"gaussian_mixture_model.md",
"multiple_discretization.md",
"scalar_products.md",
"Polynomial Chaos" => [ "Basic Usage" => "pce_tutorial.md",
"Chi Squared, One DOF" => "chi_squared_k1.md",
"Chi Squared, Several DOFs" => "chi_squared_k_greater1.md",
"Random ODE" => "random_ode.md"
],
"Optimal Power Flow" => "DCsOPF.md"
],
"math.md",
"functions.md"
]