Skip to content

Commit 3de7aff

Browse files
committed
Test Mermaid diagram
1 parent 25a689c commit 3de7aff

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,27 @@ This version is a modernization of the original Fortran 77 code. This is a work
2222

2323
Further updates are planned...
2424

25+
### Decision tree
26+
27+
Decision tree for systems of nonlinear equations
28+
29+
```mermaid
30+
flowchart TB
31+
start(Is the Jacobian matrix available?)
32+
middle1(Is flexibility required?)
33+
middle2(Is flexibility required?)
34+
start --- Yes ---> middle1
35+
start --- No ---> middle2
36+
b1(HYBRJ)
37+
b2(HYBRJ1)
38+
b3(HYBRD)
39+
b4(HYBRD1)
40+
middle1 --- Yes ---> b1
41+
middle1 --- No ---> b2
42+
middle2 --- Yes ---> b3
43+
middle2 --- No ---> b3
44+
```
45+
2546
### Documentation
2647

2748
* The API documentation for the latest default branch can be found [here](https://fortran-lang.github.io/minpack/). This is generated by processing the source files with [FORD](https://github.com/Fortran-FOSS-Programmers/ford).

0 commit comments

Comments
 (0)