Collision probability computation for conjunction assessment
0
fork

Configure Feed

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

opam: migrate 14 hand-maintained packages to dune-generated

Moves package metadata into dune-project for kdf, monopam-info,
ocaml-ax25, ocaml-collision, ocaml-crypto (4 subpackages), ocaml-csv,
ocaml-respond, ocaml-sdnv, ocaml-tls (2 subpackages), ocaml-vec3, and
ocaml-x509, and flags each .opam with the generated-by-dune header.

Running dune build after the ocaml-toml build break is resolved will
regenerate the .opam files from dune-project and reveal any
canonical-form drift in a separate commit.

+33 -9
+15 -9
collision.opam
··· 1 + # This file is generated by dune, edit dune-project instead 1 2 opam-version: "2.0" 2 3 synopsis: "Collision probability computation for conjunction assessment" 3 - description: """ 4 - Compute probability of collision (Pc) for space conjunction assessment. 5 - Implements the Foster 2D method, Chan series expansion, and Alfano 6 - maximum Pc bound. Validates against the TraCSS CA verification dataset. 7 - """ 4 + description: 5 + "Compute probability of collision (Pc) for space conjunction assessment. Implements the Foster 2D method, Chan series expansion, and Alfano maximum Pc bound. Validates against the TraCSS CA verification dataset." 8 6 maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 9 7 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 10 8 license: "ISC" 11 9 tags: ["org:blacksun" "aerospace" "math" "simulation"] 12 - homepage: "https://tangled.org/gazagnaire.org/ocaml-collision" 13 - bug-reports: "https://tangled.org/gazagnaire.org/ocaml-collision/issues" 14 - dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-collision.git" 15 10 depends: [ 16 11 "ocaml" {>= "4.14"} 17 12 "dune" {>= "3.0"} ··· 21 16 ] 22 17 build: [ 23 18 ["dune" "subst"] {dev} 24 - ["dune" "build" "-p" name "-j" jobs] 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 25 30 ] 31 + dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-collision.git"
+18
dune-project
··· 1 1 (lang dune 3.21) 2 2 (name collision) 3 3 (source (tangled gazagnaire.org/ocaml-collision)) 4 + (license ISC) 5 + (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 6 + (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 7 + 8 + (generate_opam_files true) 9 + 10 + (package 11 + (name collision) 12 + (synopsis "Collision probability computation for conjunction assessment") 13 + (description 14 + "Compute probability of collision (Pc) for space conjunction assessment. Implements the Foster 2D method, Chan series expansion, and Alfano maximum Pc bound. Validates against the TraCSS CA verification dataset.") 15 + (tags (org:blacksun aerospace math simulation)) 16 + (depends 17 + (ocaml (>= 4.14)) 18 + (dune (>= 3.0)) 19 + cdm 20 + fmt 21 + vec3))