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
if (has_non_redundant and not has_redundant) or
(has_redundant and reduction_voter in reduction_and_feedback_voter):
# has non-redundant and redundant endpoints -> normal voter insertion
# has only redundant endpoints and is feedback voter as well -> normal voter insertion
outer_pin = next(sub_pin.get_pins(selection="OUTSIDE"))
insertion_points.append(outer_pin)
Line 161-166
elif (
has_non_redundant
and has_redundant
and reduction_voter not in reduction_and_feedback_voter
):
# has only non-redundant feedback -> insert special voters
non_redundant_instances = set(
x for x in instances if x not in endpoints_to_replicate
)
non_redundant_pins = set()
According to the meaning of the comment paragraph in the if block "# has non-redundant and redundant endpoints -> normal voter insertion # has only redundant endpoints and is feedback voter as well -> normal voter insertion", the judgment condition should be
if (has_non_redundant and has_redundant)
or (has_redundant and not has_non_redundant and reduction_voter in reduction_and_feedback_voter):
"# has only non-redundant feedback -> insert special voters" in the elif block means
elif (
has_non_redundant
and not has_redundant
and reduction_voter not in reduction_and_feedback_voter
):
The text was updated successfully, but these errors were encountered:
spydrnet_tmr/analysis/voter_insertion/find_voter_insertion_points.py
Line 153-158
Line 161-166
The text was updated successfully, but these errors were encountered: