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: README.md
+16-3
Original file line number
Diff line number
Diff line change
@@ -5,18 +5,22 @@ Set-based graphs (SB-Graphs) are graphs in which the vertices and edges are grou
5
5
* Connected Components
6
6
* Matching
7
7
* Strongly Connected Components (SCC)
8
+
* Topological Sort
9
+
* Minimum Vertex Cut Set
8
10
9
11
This library defines data structures to represent SB-Graphs, and implements the aforementioned algorithms. The related publications can be used as documentation of the code.
10
12
11
13
This new approach was used in the flatter and causalization stage of the Modelica compiler, ModelicaCC (https://github.com/CIFASIS/modelicacc). Nevertheless, many fields could benefit of its use.
12
14
13
15
## Related Publications
14
16
15
-
[1] Denise Marzorati, Joaquin Fernández, Ernesto Kofman. Connected Components in Undirected Set--Based Graphs. Applications in Object--Oriented Model Manipulation Applied Mathematics and Computation, Volume 418, 2022, 126842,ISSN 0096-3003, https://doi.org/10.1016/j.amc.2021.126842.
17
+
[1] Denise Marzorati, Joaquín Fernández, and Ernesto Kofman. 2024. Efficient Matching in Large DAE Models. ACM Trans. Math. Softw. Just Accepted (June 2024). https://doi.org/10.1145/3674831
16
18
17
-
[2]Ernesto Kofman, Joaquín Fernández, Denise Marzorati. Compact sparse symbolic Jacobian computation in large systems of ODEs Applied Mathematics and Computation, Volume 403, 2021, 126181, ISSN 0096-3003, https://doi.org/10.1016/j.amc.2021.126181.
19
+
[2]Denise Marzorati, Joaquin Fernández, Ernesto Kofman. Connected Components in Undirected Set--Based Graphs. Applications in Object--Oriented Model Manipulation Applied Mathematics and Computation, Volume 418, 2022, 126842,ISSN 0096-3003, https://doi.org/10.1016/j.amc.2021.126842.
18
20
19
-
[3] Pablo Zimmermann, Joaquin Fernandez, Ernesto Kofman.
21
+
[3] Ernesto Kofman, Joaquín Fernández, Denise Marzorati. Compact sparse symbolic Jacobian computation in large systems of ODEs Applied Mathematics and Computation, Volume 403, 2021, 126181, ISSN 0096-3003, https://doi.org/10.1016/j.amc.2021.126181.
22
+
23
+
[4] Pablo Zimmermann, Joaquin Fernandez, Ernesto Kofman.
20
24
**Set-based graph methods for fast equation sorting in large DAE systems**
21
25
EOOLT '19: Proceedings of the 9th International Workshop on Equation-based Object-oriented Modeling Languages and Tools 2019
22
26
@@ -110,3 +114,12 @@ Please see the file called LICENSE.
110
114
## Bug Reporting
111
115
112
116
Report bugs to: marzorati@cifasis-conicet.gov.ar or fernandez@cifasis-conicet.gov.ar
117
+
118
+
# Changelog
119
+
120
+
## [3.0.0] - 2024-10-09
121
+
### Added
122
+
- Implemented Ordered Sets of one-dimensional, compact MDIs.
123
+
- Implemented novel versions of Maximum Matching, SCC and Topological Sort of SBG algorithms.
0 commit comments