Skip to content
Snippets Groups Projects
Commit fa3256d5 authored by Anton Akhmerov's avatar Anton Akhmerov Committed by Joseph Weston
Browse files

fix lead attachment and add test for previously failing case

Fixes #92.
parent 72da0277
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -1379,10 +1379,17 @@ class Builder:
if domain < min_dom:
raise ValueError('Builder does not interrupt the lead,'
' this lead cannot be attached.')
return domain < max_dom + 1
return domain <= max_dom + 1
all_added = self.fill(lead_builder, shape, (max_dom,),
# We start flood-fill from the first domain that doesn't belong to the
# system (this one is guaranteed to contain a complete unit cell of the
# lead). After flood-fill we remove that domain.
all_added = self.fill(lead_builder, shape, (max_dom + 1,),
max_sites=float('inf'))
to_delete = {site for site in all_added
if sym.which(site)[0] == max_dom + 1}
all_added = [site for site in all_added if site not in to_delete]
del self[to_delete]
# Calculate the interface.
interface = set()
......
......@@ -772,6 +772,15 @@ def test_attach_lead():
syst.finalized()
def test_attach_lead_incomplete_unit_cell():
lat = kwant.lattice.chain()
syst = kwant.Builder()
lead = kwant.Builder(kwant.TranslationalSymmetry((2,)))
syst[lat(1)] = lead[lat(0)] = lead[lat(1)] = 0
lead[lat.neighbors()] = 0
assert(len(syst.attach_lead(lead)) == 0)
def test_neighbors_not_in_single_domain():
sr = builder.Builder()
lead = builder.Builder(VerySimpleSymmetry(-1))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment