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
DNA_construct is a Component but it has a different way of evaluating equality than a Component.
I did this because I don't want constructs with different data members (constructs that have or haven't been combinatorially enumerated) to be considered different (since they are, basically, the same construct and should yield the same combinatorial enumeration at the end).
However, it would be good if the equality method of all components was the same, so the suggested change is to change the equality function to something else and then use that everywhere where I am currently using equality.
I think this would involve a pretty significant number of changes to integrase_enumerator and DNA_construct and related things.
The text was updated successfully, but these errors were encountered:
DNA_construct
is aComponent
but it has a different way of evaluating equality than aComponent
.I did this because I don't want constructs with different data members (constructs that have or haven't been combinatorially enumerated) to be considered different (since they are, basically, the same construct and should yield the same combinatorial enumeration at the end).
However, it would be good if the equality method of all components was the same, so the suggested change is to change the equality function to something else and then use that everywhere where I am currently using equality.
I think this would involve a pretty significant number of changes to
integrase_enumerator
andDNA_construct
and related things.The text was updated successfully, but these errors were encountered: