Contact Graph Routing for time-varying satellite networks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocaml-linkedin: apply dune fmt

Pure formatting changes from `dune fmt`: doc comment placement moves
from above the binding to below it for `type`s, multi-line `match`
expressions collapse onto one line where they fit, and infix operator
applications pick up spaces (`Soup.($?)` -> `Soup.( $? )`). No
semantic changes.

+19 -1
+12 -1
README.md
··· 24 24 25 25 ## Installation 26 26 27 + Install with opam: 28 + 29 + ```sh 30 + $ opam install cgr 27 31 ``` 28 - opam install cgr 32 + 33 + If opam cannot find the package, it may not yet be released in the public 34 + `opam-repository`. Add the overlay repository, then install it: 35 + 36 + ```sh 37 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 38 + $ opam update 39 + $ opam install cgr 29 40 ``` 30 41 31 42 ## Usage
+1
cgr.opam
··· 16 16 "fmt" {>= "0.9"} 17 17 "bheap" {>= "2.0"} 18 18 "alcotest" {with-test} 19 + "mdx" {with-test} 19 20 "alcobar" {with-test} 20 21 "odoc" {with-doc} 21 22 ]
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries cgr fmt))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 3 4 (name cgr) 4 5 ··· 22 23 (fmt (>= 0.9)) 23 24 (bheap (>= 2.0)) 24 25 (alcotest :with-test) 26 + (mdx :with-test) 25 27 (alcobar :with-test)))