Skip to content

Commit

Permalink
update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
fleupold committed Mar 17, 2024
1 parent e64bb0e commit d33f5f0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions crates/driver/src/domain/competition/solution/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,10 +438,11 @@ impl SolverScore {
}
}

/// A unique solution ID. This ID is generated by the solver and only needs to
/// be unique within a single round of competition. This ID is only important in
/// the communication between the driver and the solver, and it is not used by
/// the protocol.
/// A unique reference to a specific solution. Sings IDs are generated by the
/// solver and need to be unique within a single round of competition. If the
/// driver merges solutions it combines individual IDs. This reference is only
/// important in the communication between the driver and the solver, and it is
/// not used by the protocol.
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum Id {
Single(u64),
Expand Down

0 comments on commit d33f5f0

Please sign in to comment.