Skip to content

Commit 5e87256

Browse files
committed
Documentation skeleton
1 parent cc5df4c commit 5e87256

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

docs/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build/
2+
site/

docs/make.jl

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using Documenter, ModelingToolkit
2+
3+
4+
makedocs(
5+
sitename="ModelingToolkit.jl",
6+
modules=[ModelingToolkit],
7+
pages=[
8+
"Home" => "index.md",
9+
]
10+
)

docs/src/index.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# ModelingToolkit.jl Documentation
2+
3+
4+
ModelingToolkit.jl is an intermediate representation (IR) of computational graphs
5+
for scientific computing problems. Its purpose is to be a common target for
6+
modeling DSLs in order to allow for a common platform for model inspection and
7+
transformation. It uses a tagged variable IR in order to allow specification of
8+
complex models and allow for transformations of models. It has ways to plug into
9+
its function registration and derivative system so that way it can interact
10+
nicely with user-defined routines. Together, this is an abstract form of a
11+
scientific model that is easy for humans to generate but also easy for programs
12+
to manipulate.

0 commit comments

Comments
 (0)