Skip to main content

difi/
lib.rs

1//! difi: Did I Find It?
2//!
3//! Evaluate linkage completeness and purity for astronomical surveys.
4//!
5//! Given a set of observations with known object associations and a set of
6//! predicted linkages, difi determines:
7//!
8//! - **CIFI (Can I Find It?)**: Which objects are "findable" based on their
9//!   observation patterns (enough observations, enough nights, etc.)
10//!
11//! - **DIFI (Did I Find It?)**: Which linkages are pure, contaminated, or mixed,
12//!   and what fraction of findable objects were successfully recovered.
13
14#![allow(clippy::too_many_arguments)]
15
16pub mod cifi;
17pub mod difi;
18pub mod error;
19pub mod io;
20pub mod metrics;
21pub mod mmap;
22pub mod partitions;
23#[cfg(feature = "python")]
24mod python;
25pub mod types;