Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
georgwiese committed Feb 3, 2025
1 parent ddb49f6 commit 5e0443f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ast/src/analyzed/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1008,6 +1008,7 @@ impl<T> Children<AlgebraicExpression<T>> for ExpressionList<T> {
#[derive(
Debug, PartialEq, Eq, PartialOrd, Ord, Clone, Serialize, Deserialize, JsonSchema, Hash,
)]
/// For documentation, see the equivalent `Constr` variant in std/prelude.asm.
pub struct PhantomBusInteractionIdentity<T> {
// The ID is globally unique among identities.
pub id: u64,
Expand All @@ -1017,6 +1018,9 @@ pub struct PhantomBusInteractionIdentity<T> {
pub payload: ExpressionList<T>,
pub latch: AlgebraicExpression<T>,
pub folded_expressions: ExpressionList<T>,
// Note that in PIL, this is a list of expressions, but we'd
// always expect direct column references, so this is unpacked
// when converting from PIL to this struct.
pub accumulator_columns: Vec<AlgebraicReference>,
}

Expand Down

0 comments on commit 5e0443f

Please sign in to comment.