File tree 3 files changed +24
-0
lines changed
3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ build /
2
+ site /
Original file line number Diff line number Diff line change
1
+ using Documenter, ModelingToolkit
2
+
3
+
4
+ makedocs (
5
+ sitename= " ModelingToolkit.jl" ,
6
+ modules= [ModelingToolkit],
7
+ pages= [
8
+ " Home" => " index.md" ,
9
+ ]
10
+ )
Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments