Contact Graph Routing for time-varying satellite networks
0
fork

Configure Feed

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

fix(lint): replace Printf/Format with Fmt in block and bpsec

+3 -3
+2 -2
gen/cgr_gen.ml
··· 94 94 let sats = 95 95 List.init shells (fun shell -> 96 96 List.init sat_per_shell (fun sat -> 97 - Cgr.Node.v (Printf.sprintf "S%d_%d" shell sat))) 97 + Cgr.Node.v (Fmt.str "S%d_%d" shell sat))) 98 98 in 99 99 (* Intra-plane links (satellites in same shell) *) 100 100 List.iter ··· 125 125 add_ground_links contacts ~sats ~ground_stations ~duration ~rate ~owlt; 126 126 !contacts 127 127 128 - let nodes n = List.init n (fun i -> Cgr.Node.v (Printf.sprintf "N%d" i)) 128 + let nodes n = List.init n (fun i -> Cgr.Node.v (Fmt.str "N%d" i))
+1 -1
gen/dune
··· 1 1 (library 2 2 (name cgr_gen) 3 - (libraries cgr)) 3 + (libraries cgr fmt))