You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/internals.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,12 @@ This section documents the internal implementation details of ModelingToolkit. T
6
6
7
7
ModelingToolkit's internal architecture consists of several key components:
8
8
9
-
-**Structural Transformation**: Algorithms for transforming equation systems, including index reduction, tearing, and algebraic simplification
10
-
-**Bipartite Graphs**: Graph representations used to analyze relationships between equations and variables
11
-
-**System Structure**: Internal representations of system state and transformations
9
+
-**Structural Transformation**: Algorithms for transforming equation systems, including index reduction, tearing, and algebraic simplification
10
+
-**Bipartite Graphs**: Graph representations used to analyze relationships between equations and variables
11
+
-**System Structure**: Internal representations of system state and transformations
12
12
13
13
These components work together to enable ModelingToolkit's symbolic manipulation and code generation capabilities.
14
14
15
15
!!! warning
16
+
16
17
The functions and types documented in this section are internal implementation details. Users should not rely on these APIs as they may change or be removed without deprecation warnings.
Copy file name to clipboardExpand all lines: docs/src/internals/bipartite_graph.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# Bipartite Graphs
2
2
3
3
!!! warning "Internal API"
4
+
4
5
The functions documented on this page are internal implementation details of ModelingToolkit. They are not part of the public API and may change or be removed without notice in non-breaking releases. This documentation is provided to help contributors understand the codebase.
5
6
6
7
ModelingToolkit uses bipartite graphs to represent relationships between equations and variables in systems. These functions provide tools for working with and analyzing these graphs.
Copy file name to clipboardExpand all lines: docs/src/internals/structural_transformation.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,7 @@
1
1
# Structural Transformation
2
2
3
3
!!! warning "Internal API"
4
+
4
5
The functions documented on this page are internal implementation details of ModelingToolkit. They are not part of the public API and may change or be removed without notice in non-breaking releases. This documentation is provided to help contributors understand the codebase.
5
6
6
7
These functions are used for structural analysis and transformation of equation systems, including index reduction, tearing, and other algebraic manipulations used in the simplification process.
0 commit comments