@@ -13,11 +13,11 @@ DAG is based on a fork of [daglib by Jacob Williams], refactored to
13
13
14
14
* Adopt a functional programming pattern based on (mostly) pure functions.
15
15
* Add build system and test harness automated by [ fpm] ,
16
- * Add unit testing written with [ Vegetables ] ,
16
+ * Add unit testing written with [ veggies ] ,
17
17
* Add continuous-integration testing and documentation deployment via [ GitHub Actions] ,
18
18
* Add [ documentation] generated by [ FORD] ,
19
19
* Add runtime assertion-checking using [ Assert] , and
20
- * Add [ JSON] file input/output using [ jsonff ] .
20
+ * Add [ JSON] file input/output using [ rojff ] .
21
21
* Ensure that dag objects always have a valid state that includes a topological
22
22
ordering stored without mutating vertices or vertex arrays.
23
23
@@ -85,8 +85,9 @@ fpm run --example print-to-json > dag.json
85
85
* [ read-from-json.f90] - constructs a DAG by reading from a JSON file.
86
86
Run this example as follows:
87
87
```
88
- fpm run --example read-from-json > dag.json
88
+ fpm run --example read-from-json
89
89
```
90
+ which will read the file [ ./example/dag-dependencies.json]
90
91
* [ dag-to-dot.f90] - constructs a DAG describing the module dependencies in
91
92
an early version of the Framework for Extensible Asynchronous
92
93
Task Scheduling ([ FEATS] ) and prints the DAG to a .dot file suitable for
@@ -128,11 +129,11 @@ If you find this software useful, please consider donating code or
128
129
[ fpm ] : https://github.com/fortran-lang/fpm
129
130
[ 3276af ] : https://github.com/everythingfunctional/fpm/commit/3276af2e000d1b2c90f151148cd01cce0d3e886d
130
131
131
- [ Vegetables ] : https://gitlab.com/everythingfunctional/Vegetables
132
+ [ veggies ] : https://gitlab.com/everythingfunctional/veggies
132
133
[ GitHub Actions ] : https://github.com/features/actions
133
134
[ FORD ] : https://github.com/Fortran-FOSS-Programmers/ford
134
135
[ JSON ] : https://www.json.org/json-en.html
135
- [ jsonff ] : https://gitlab.com/everythingfunctional/jsonff
136
+ [ rojff ] : https://gitlab.com/everythingfunctional/rojff
136
137
[ ./src/dag_test.f90 ] : ./src/dag_test.f90
137
138
[ example ] : ./example/
138
139
[ FEATS ] : https://github.com/sourceryinstitute/feats
@@ -142,3 +143,4 @@ If you find this software useful, please consider donating code or
142
143
[ dag-to-dot.f90 ] : ./example/dag-to-dot.f90
143
144
[ documentation ] : https://sourceryinstitute.github.io/dag/
144
145
[ issue ] : https://github.com/sourceryinstitute/dag/issues/new
146
+ [ ./example/dag-dependencies.json ] : ./example/dag-dependencies.json
0 commit comments