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
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,27 @@ This version is a modernization of the original Fortran 77 code. This is a work
22
22
23
23
Further updates are planned...
24
24
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
+
25
46
### Documentation
26
47
27
48
* 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