You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Essentially, the Aggregate constructor of the Value sort will require an additional indicator of which variant of a represented enum is being used. The AggregateKind is available at creation and contains a VariantIdx (wrapped Int) which numbers the variants from 0 .. N (presumably in source code order).
The Rvalue::Discriminant operation retrieves an indicator of which variant is being matched (and 0 for all values that are not enums).
However, as it turned out, this indicator is not the VariantIdx included in the AggregateKind that is provided upon creation of the Value. Specifically, the discriminant of enum variants can be set to arbitrary unique usizes using
and the discriminant for A will be 65, whereas the AggregateKind for an A contains a VariantIdx of 0.
The SwitchInt terminator will use these Discriminant values, whereas the Downcast projection uses the VariantIdx.
Reliable information about what exactly the Discriminant should return is difficult to find, and part of its semantics is even not fully determined among experts, see this discussion.
The text was updated successfully, but these errors were encountered:
Essentially, the
Aggregate
constructor of theValue
sort will require an additional indicator of which variant of a representedenum
is being used. TheAggregateKind
is available at creation and contains aVariantIdx
(wrappedInt
) which numbers the variants from0 .. N
(presumably in source code order).The
Rvalue::Discriminant
operation retrieves an indicator of which variant is being matched (and 0 for all values that are notenum
s).However, as it turned out, this indicator is not the
VariantIdx
included in theAggregateKind
that is provided upon creation of theValue
. Specifically, the discriminant ofenum
variants can be set to arbitrary uniqueusize
s usingand the discriminant for
A
will be65
, whereas theAggregateKind
for anA
contains aVariantIdx
of0
.The
SwitchInt
terminator will use theseDiscriminant
values, whereas theDowncast
projection uses theVariantIdx
.Reliable information about what exactly the
Discriminant
should return is difficult to find, and part of its semantics is even not fully determined among experts, see this discussion.The text was updated successfully, but these errors were encountered: