@@ -13,11 +13,11 @@ DAG is based on a fork of [daglib by Jacob Williams], refactored to
1313
1414* Adopt a functional programming pattern based on (mostly) pure functions.
1515* Add build system and test harness automated by [ fpm] ,
16- * Add unit testing written with [ Vegetables ] ,
16+ * Add unit testing written with [ veggies ] ,
1717* Add continuous-integration testing and documentation deployment via [ GitHub Actions] ,
1818* Add [ documentation] generated by [ FORD] ,
1919* Add runtime assertion-checking using [ Assert] , and
20- * Add [ JSON] file input/output using [ jsonff ] .
20+ * Add [ JSON] file input/output using [ rojff ] .
2121* Ensure that dag objects always have a valid state that includes a topological
2222 ordering stored without mutating vertices or vertex arrays.
2323
@@ -85,8 +85,9 @@ fpm run --example print-to-json > dag.json
8585* [ read-from-json.f90] - constructs a DAG by reading from a JSON file.
8686 Run this example as follows:
8787```
88- fpm run --example read-from-json > dag.json
88+ fpm run --example read-from-json
8989```
90+ which will read the file [ ./example/dag-dependencies.json]
9091* [ dag-to-dot.f90] - constructs a DAG describing the module dependencies in
9192 an early version of the Framework for Extensible Asynchronous
9293 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
128129[ fpm ] : https://github.com/fortran-lang/fpm
129130[ 3276af ] : https://github.com/everythingfunctional/fpm/commit/3276af2e000d1b2c90f151148cd01cce0d3e886d
130131
131- [ Vegetables ] : https://gitlab.com/everythingfunctional/Vegetables
132+ [ veggies ] : https://gitlab.com/everythingfunctional/veggies
132133[ GitHub Actions ] : https://github.com/features/actions
133134[ FORD ] : https://github.com/Fortran-FOSS-Programmers/ford
134135[ JSON ] : https://www.json.org/json-en.html
135- [ jsonff ] : https://gitlab.com/everythingfunctional/jsonff
136+ [ rojff ] : https://gitlab.com/everythingfunctional/rojff
136137[ ./src/dag_test.f90 ] : ./src/dag_test.f90
137138[ example ] : ./example/
138139[ FEATS ] : https://github.com/sourceryinstitute/feats
@@ -142,3 +143,4 @@ If you find this software useful, please consider donating code or
142143[ dag-to-dot.f90 ] : ./example/dag-to-dot.f90
143144[ documentation ] : https://sourceryinstitute.github.io/dag/
144145[ issue ] : https://github.com/sourceryinstitute/dag/issues/new
146+ [ ./example/dag-dependencies.json ] : ./example/dag-dependencies.json
0 commit comments