2017-07-23 23:03:21 +02:00
|
|
|
# encoding: UTF-8
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2017-07-23 23:03:21 +02:00
|
|
|
# KLayout Layout Viewer
|
2018-01-01 21:08:06 +01:00
|
|
|
# Copyright (C) 2006-2018 Matthias Koefferlein
|
2017-07-23 23:03:21 +02:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
if !$:.member?(File::dirname($0))
|
|
|
|
|
$:.push(File::dirname($0))
|
|
|
|
|
end
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
load("test_prologue.rb")
|
|
|
|
|
|
|
|
|
|
class DBLayout_TestClass < TestBase
|
|
|
|
|
|
|
|
|
|
def test_1
|
|
|
|
|
|
|
|
|
|
lmap = RBA::LayerMap::new
|
|
|
|
|
|
|
|
|
|
lmap.map( "1/0", 0 )
|
|
|
|
|
lmap.map( "2/2", 0 )
|
|
|
|
|
lmap.map( "10/2", 0 )
|
|
|
|
|
assert_equal( lmap.mapping_str(0), "1/0;2/2;10/2" )
|
|
|
|
|
|
|
|
|
|
lmap.map( "3/2", 1 )
|
|
|
|
|
lmap.map( "2/2", 1 )
|
|
|
|
|
lmap.map( "4/2", 1 )
|
|
|
|
|
lmap.map( "1/2", 1 )
|
|
|
|
|
lmap.map( "0/0", 1 )
|
|
|
|
|
assert_equal( lmap.mapping_str(1), "0/0;1/2;2-4/2" ) # could be "0/0;1-4/2" as well ...
|
|
|
|
|
|
|
|
|
|
lmap.map( RBA::LayerInfo::new(2, 2), RBA::LayerInfo::new(4, 4), 2 )
|
|
|
|
|
lmap.map( RBA::LayerInfo::new(0, 1), 2 )
|
|
|
|
|
assert_equal( lmap.mapping_str(2), "0/1;2-4/2-4" )
|
|
|
|
|
|
|
|
|
|
assert_equal( lmap.is_mapped?(RBA::LayerInfo::new(2, 4)), true )
|
|
|
|
|
assert_equal( lmap.is_mapped?(RBA::LayerInfo::new(0, 0)), true )
|
|
|
|
|
assert_equal( lmap.is_mapped?(RBA::LayerInfo::new(0, 100)), false )
|
|
|
|
|
|
|
|
|
|
assert_equal( lmap.logical(RBA::LayerInfo::new(2, 4)), 2 )
|
|
|
|
|
assert_equal( lmap.logical(RBA::LayerInfo::new(4, 2)), 2 )
|
|
|
|
|
assert_equal( lmap.logical(RBA::LayerInfo::new(1, 2)), 1 )
|
|
|
|
|
assert_equal( lmap.logical(RBA::LayerInfo::new(0, 0)), 1 )
|
|
|
|
|
assert_equal( lmap.logical(RBA::LayerInfo::new(100, 0)), -1 )
|
|
|
|
|
assert_equal( lmap.logical(RBA::LayerInfo::new(10, 2)), 0 )
|
|
|
|
|
assert_equal( lmap.logical(RBA::LayerInfo::new(1, 0)), 0 )
|
|
|
|
|
|
|
|
|
|
assert_equal( lmap.mapping(2).to_s, "2/2" )
|
|
|
|
|
assert_equal( lmap.mapping(1).to_s, "1/2" )
|
|
|
|
|
assert_equal( lmap.mapping(0).to_s, "10/2" )
|
|
|
|
|
|
|
|
|
|
lmap2 = lmap.dup
|
|
|
|
|
|
|
|
|
|
lmap.clear
|
|
|
|
|
assert_equal( lmap.is_mapped?(RBA::LayerInfo::new(2, 4)), false )
|
|
|
|
|
assert_equal( lmap.is_mapped?(RBA::LayerInfo::new(0, 0)), false )
|
|
|
|
|
assert_equal( lmap.is_mapped?(RBA::LayerInfo::new(0, 100)), false )
|
|
|
|
|
|
|
|
|
|
assert_equal( lmap2.is_mapped?(RBA::LayerInfo::new(2, 4)), true )
|
|
|
|
|
assert_equal( lmap2.is_mapped?(RBA::LayerInfo::new(0, 0)), true )
|
|
|
|
|
assert_equal( lmap2.is_mapped?(RBA::LayerInfo::new(0, 100)), false )
|
|
|
|
|
|
|
|
|
|
assert_equal( lmap2.mapping(0).to_s, "10/2" )
|
|
|
|
|
|
|
|
|
|
lmap2.assign( lmap )
|
|
|
|
|
assert_equal( lmap2.is_mapped?(RBA::LayerInfo::new(2, 4)), false )
|
|
|
|
|
assert_equal( lmap2.is_mapped?(RBA::LayerInfo::new(0, 0)), false )
|
|
|
|
|
assert_equal( lmap2.is_mapped?(RBA::LayerInfo::new(0, 100)), false )
|
|
|
|
|
|
|
|
|
|
lmap = RBA::LayerMap::new
|
|
|
|
|
lmap.map( "2/2:4/4", 0 )
|
|
|
|
|
lmap.map( RBA::LayerInfo::new(0, 1), 2, RBA::LayerInfo::new(5, 5) )
|
|
|
|
|
assert_equal( lmap.mapping_str(0), "2/2 : 4/4" )
|
|
|
|
|
assert_equal( lmap.mapping(0).to_s, "4/4" )
|
|
|
|
|
assert_equal( lmap.mapping(2).to_s, "5/5" )
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_2
|
|
|
|
|
|
|
|
|
|
# LayerInfo tests
|
|
|
|
|
l1 = RBA::LayerInfo::new
|
|
|
|
|
assert_equal(l1.to_s, "")
|
|
|
|
|
assert_equal(l1.anonymous?, true)
|
|
|
|
|
assert_equal(l1.is_named?, false)
|
|
|
|
|
l2 = RBA::LayerInfo::new(1, 100)
|
|
|
|
|
assert_equal(l2.to_s, "1/100")
|
|
|
|
|
assert_equal(l2.anonymous?, false)
|
|
|
|
|
assert_equal(l2.is_named?, false)
|
|
|
|
|
l3 = RBA::LayerInfo::new("aber")
|
|
|
|
|
assert_equal(l3.to_s, "aber")
|
|
|
|
|
assert_equal(l3.anonymous?, false)
|
|
|
|
|
assert_equal(l3.is_named?, true)
|
|
|
|
|
assert_equal(l3.is_equivalent?(l2), false)
|
|
|
|
|
l3.layer = 1
|
|
|
|
|
l3.datatype = 100
|
|
|
|
|
assert_equal(l3.is_named?, false)
|
|
|
|
|
assert_equal(l3.is_equivalent?(l2), true)
|
|
|
|
|
|
|
|
|
|
l1.assign(l3)
|
|
|
|
|
assert_equal(l1.to_s, "aber (1/100)")
|
|
|
|
|
assert_equal(l1.is_named?, false)
|
|
|
|
|
assert_equal(l1.is_equivalent?(l3), true)
|
|
|
|
|
assert_equal(l1 == l3, true)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_3
|
|
|
|
|
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
ly.read(ENV["TESTSRC"] + "/testdata/gds/t10.gds")
|
|
|
|
|
|
|
|
|
|
def ll(ly)
|
|
|
|
|
s = []
|
|
|
|
|
(0..(ly.layers-1)).each do |l|
|
|
|
|
|
if ly.is_valid_layer?(l)
|
|
|
|
|
s.push(ly.get_info(l).to_s)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
s.join(",")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
assert_equal(ll(ly), "2/0,4/0,6/0,3/0,8/0,1/0,5/0,7/0,3/1,6/1,8/1")
|
|
|
|
|
|
|
|
|
|
opt = RBA::LoadLayoutOptions.new
|
|
|
|
|
assert_equal(opt.is_text_enabled?, true)
|
|
|
|
|
assert_equal(opt.is_properties_enabled?, true)
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
ly.read(ENV["TESTSRC"] + "/testdata/gds/t10.gds", opt)
|
|
|
|
|
assert_equal(ll(ly), "2/0,4/0,6/0,3/0,8/0,1/0,5/0,7/0,3/1,6/1,8/1")
|
|
|
|
|
|
|
|
|
|
opt = RBA::LoadLayoutOptions.new
|
|
|
|
|
opt.text_enabled = false
|
|
|
|
|
assert_equal(opt.is_text_enabled?, false)
|
|
|
|
|
opt.properties_enabled = false
|
|
|
|
|
assert_equal(opt.is_properties_enabled?, false)
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
ly.read(ENV["TESTSRC"] + "/testdata/gds/t10.gds", opt)
|
|
|
|
|
assert_equal(ll(ly), "2/0,4/0,6/0,3/0,8/0,1/0,5/0,7/0")
|
|
|
|
|
|
|
|
|
|
lm = RBA::LayerMap.new
|
|
|
|
|
opt.set_layer_map(lm, false)
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
ly.read(ENV["TESTSRC"] + "/testdata/gds/t10.gds", opt)
|
|
|
|
|
assert_equal(ll(ly), "")
|
|
|
|
|
|
|
|
|
|
opt.select_all_layers
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
ly.read(ENV["TESTSRC"] + "/testdata/gds/t10.gds", opt)
|
|
|
|
|
assert_equal(ll(ly), "2/0,4/0,6/0,3/0,8/0,1/0,5/0,7/0")
|
|
|
|
|
|
|
|
|
|
assert_equal(ly.layer_indexes.collect { |li| li.to_s }.join(","), "0,1,2,3,4,5,6,7")
|
|
|
|
|
assert_equal(ly.layer_infos.collect { |li| li.to_s }.join(","), "2/0,4/0,6/0,3/0,8/0,1/0,5/0,7/0")
|
|
|
|
|
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
li = RBA::LayerInfo.new(3, 0)
|
|
|
|
|
lm.map(li, ly.insert_layer(li))
|
|
|
|
|
opt.set_layer_map(lm, true)
|
|
|
|
|
ly.read(ENV["TESTSRC"] + "/testdata/gds/t10.gds", opt)
|
|
|
|
|
assert_equal(ll(ly), "3/0,2/0,4/0,6/0,8/0,1/0,5/0,7/0")
|
|
|
|
|
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
opt.set_layer_map(lm, false)
|
|
|
|
|
ly.read(ENV["TESTSRC"] + "/testdata/gds/t10.gds", opt)
|
|
|
|
|
assert_equal(ll(ly), "3/0")
|
|
|
|
|
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
a = ly.layer(RBA::LayerInfo.new(3, 0))
|
|
|
|
|
assert_equal(ll(ly), "3/0")
|
|
|
|
|
b = ly.layer(RBA::LayerInfo.new(3, 0))
|
|
|
|
|
assert_equal(a, b)
|
|
|
|
|
assert_equal(ll(ly), "3/0")
|
2017-02-24 22:43:31 +01:00
|
|
|
bb = b
|
|
|
|
|
b = ly.layer
|
2017-02-12 13:21:08 +01:00
|
|
|
assert_equal(ll(ly), "3/0,")
|
2017-02-24 22:43:31 +01:00
|
|
|
assert_equal(b != bb, true)
|
|
|
|
|
bb = b
|
2017-02-12 13:21:08 +01:00
|
|
|
b = ly.layer(RBA::LayerInfo.new)
|
|
|
|
|
assert_equal(ll(ly), "3/0,,")
|
2017-02-24 22:43:31 +01:00
|
|
|
assert_equal(b != bb, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
n = ly.layer(RBA::LayerInfo.new ("hallo"));
|
|
|
|
|
assert_equal(ll(ly), "3/0,,,hallo")
|
2017-02-24 22:43:31 +01:00
|
|
|
assert_equal(b != n, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
ly = RBA::Layout.new
|
|
|
|
|
li = ly.layer(2, 0)
|
|
|
|
|
a = ly.find_layer(3, 0)
|
|
|
|
|
assert_equal(a, nil)
|
|
|
|
|
a = ly.find_layer(2, 0)
|
|
|
|
|
assert_equal(a, li)
|
|
|
|
|
a = ly.find_layer(RBA::LayerInfo.new(3, 0))
|
|
|
|
|
assert_equal(a, nil)
|
|
|
|
|
a = ly.find_layer(RBA::LayerInfo.new(2, 0))
|
|
|
|
|
assert_equal(a, li)
|
|
|
|
|
li2 = ly.layer("hallo")
|
|
|
|
|
a = ly.find_layer("hillo")
|
|
|
|
|
assert_equal(a, nil)
|
|
|
|
|
a = ly.find_layer("hallo")
|
|
|
|
|
assert_equal(a, li2)
|
|
|
|
|
a = ly.find_layer(3, 0, "hallo")
|
|
|
|
|
assert_equal(a, nil)
|
|
|
|
|
a = ly.find_layer(2, 0, "hallo")
|
|
|
|
|
assert_equal(a, li)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_4
|
|
|
|
|
|
|
|
|
|
# LayerMap tests
|
|
|
|
|
lm = RBA::LayerMap.new
|
|
|
|
|
lm.map("1-10/5-20", 0)
|
|
|
|
|
lm.map("3/0", 1)
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(0, 0)), false)
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(3, 0)), true)
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(3, 1)), false)
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(3, 5)), true)
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(3, 20)), true)
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(1, 5)), true)
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(1, 20)), true)
|
|
|
|
|
assert_equal(lm.mapping_str(1), "3/0")
|
|
|
|
|
assert_equal(lm.mapping(1).to_s, "3/0")
|
|
|
|
|
assert_equal(lm.logical(RBA::LayerInfo.new(3, 0)), 1)
|
|
|
|
|
|
|
|
|
|
lm.clear
|
|
|
|
|
assert_equal(lm.is_mapped?(RBA::LayerInfo.new(3, 0)), false)
|
|
|
|
|
lm.map(RBA::LayerInfo.new(3, 0), 2)
|
|
|
|
|
assert_equal(lm.logical(RBA::LayerInfo.new(3, 0)), 2)
|
|
|
|
|
|
|
|
|
|
lm.map(RBA::LayerInfo.new(1, 0), RBA::LayerInfo.new(10, 10), 1)
|
|
|
|
|
assert_equal(lm.logical(RBA::LayerInfo.new(3, 0)), 1)
|
|
|
|
|
assert_equal(lm.logical(RBA::LayerInfo.new(3, 3)), 1)
|
|
|
|
|
assert_equal(lm.logical(RBA::LayerInfo.new(1, 3)), 1)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def collect(s, l)
|
|
|
|
|
|
|
|
|
|
res = []
|
|
|
|
|
while !s.at_end?
|
|
|
|
|
r = "[#{l.cell_name(s.cell_index)}]"
|
|
|
|
|
if s.shape.is_box?
|
|
|
|
|
box = s.shape.box
|
|
|
|
|
r += box.transformed(s.trans).to_s
|
|
|
|
|
else
|
|
|
|
|
r += "X";
|
|
|
|
|
end
|
|
|
|
|
s.next
|
|
|
|
|
res.push(r)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return res.join("/")
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5
|
|
|
|
|
|
|
|
|
|
# Recursive shape iterator tests
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
|
|
|
|
|
|
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
|
|
|
|
|
bb = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
c3.shapes(1).insert(bb)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
i1 = l.begin_shapes_touching(c0.cell_index, 0, RBA::Box.new(0, 0, 100, 100))
|
|
|
|
|
i1copy = i1.dup
|
|
|
|
|
assert_equal(i1copy.overlapping?, false)
|
|
|
|
|
assert_equal(collect(i1, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)")
|
|
|
|
|
assert_equal(collect(i1copy, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
i1 = l.begin_shapes_touching(c0.cell_index, 0, RBA::DBox.new(0, 0, 0.100, 0.100))
|
|
|
|
|
assert_equal(collect(i1, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
i1 = c0.begin_shapes_rec_touching(0, RBA::Box.new(0, 0, 100, 100))
|
|
|
|
|
assert_equal(collect(i1, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
i1 = c0.begin_shapes_rec_touching(0, RBA::DBox.new(0, 0, 0.100, 0.100))
|
|
|
|
|
assert_equal(collect(i1, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
i1o = l.begin_shapes_overlapping(c0.cell_index, 0, RBA::Box.new(0, 0, 100, 100));
|
|
|
|
|
assert_equal(collect(i1o, l), "");
|
|
|
|
|
i1o = l.begin_shapes_overlapping(c0.cell_index, 0, RBA::DBox.new(0, 0, 0.100, 0.100));
|
|
|
|
|
assert_equal(collect(i1o, l), "");
|
|
|
|
|
i1copy.overlapping = true
|
|
|
|
|
assert_equal(i1copy.overlapping?, true)
|
|
|
|
|
assert_equal(collect(i1copy, l), "");
|
|
|
|
|
i1o = l.begin_shapes_overlapping(c0.cell_index, 0, RBA::Box.new(0, 0, 100, 101));
|
|
|
|
|
assert_equal(collect(i1o, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)");
|
|
|
|
|
i1o = l.begin_shapes_overlapping(c0.cell_index, 0, RBA::DBox.new(0, 0, 0.100, 0.101));
|
|
|
|
|
assert_equal(collect(i1o, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)");
|
|
|
|
|
i1copy.region = RBA::Box.new(0, 0, 100, 101)
|
|
|
|
|
assert_equal(i1copy.region.to_s, "(0,0;100,101)")
|
|
|
|
|
assert_equal(collect(i1copy, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)");
|
|
|
|
|
i1o = l.begin_shapes_overlapping(c0.cell_index, 0, RBA::Box.new(0, 0, 101, 101));
|
|
|
|
|
assert_equal(collect(i1o, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)");
|
|
|
|
|
i1o = c0.begin_shapes_rec_overlapping(0, RBA::Box.new(0, 0, 101, 101));
|
|
|
|
|
assert_equal(collect(i1o, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)");
|
|
|
|
|
|
|
|
|
|
i2 = l.begin_shapes_touching(c0.cell_index, 0, RBA::Box.new(-100, 0, 100, 100));
|
|
|
|
|
assert_equal(collect(i2, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](-1200,0;-100,1000)");
|
|
|
|
|
i2o = l.begin_shapes_overlapping(c0.cell_index, 0, RBA::Box.new(-100, 0, 100, 100));
|
|
|
|
|
assert_equal(collect(i2o, l), "");
|
|
|
|
|
i2o = l.begin_shapes_overlapping(c0.cell_index, 0, RBA::Box.new(-101, 0, 101, 101));
|
|
|
|
|
assert_equal(collect(i2o, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](-1200,0;-100,1000)");
|
|
|
|
|
|
|
|
|
|
i4 = l.begin_shapes_touching(c0.cell_index, 0, RBA::Box.new(-100, 0, 2000, 100));
|
|
|
|
|
i4_copy = l.begin_shapes_touching(c0.cell_index, 0, RBA::Box.new(-100, 0, 2000, 100));
|
|
|
|
|
i4.max_depth = 0;
|
|
|
|
|
assert_equal(collect(i4, l), "[c0](0,100;1000,1200)");
|
|
|
|
|
|
|
|
|
|
assert_equal(i4 == i4, true);
|
|
|
|
|
assert_equal(i4 != i4, false);
|
|
|
|
|
assert_equal(i4 == i4_copy, false);
|
|
|
|
|
assert_equal(i4 != i4_copy, true);
|
|
|
|
|
i4 = i4_copy.dup;
|
|
|
|
|
assert_equal(i4 == i4_copy, true);
|
|
|
|
|
assert_equal(i4 != i4_copy, false);
|
|
|
|
|
i4.max_depth = 1;
|
|
|
|
|
assert_equal(collect(i4, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](-1200,0;-100,1000)");
|
|
|
|
|
|
|
|
|
|
i4.assign(i4_copy);
|
|
|
|
|
assert_equal(collect(i4, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)");
|
|
|
|
|
|
|
|
|
|
i5 = l.begin_shapes(c0.cell_index, 0);
|
|
|
|
|
assert_equal(collect(i5, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)");
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new
|
|
|
|
|
assert_equal(collect(ii, l), "")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c1, 0)
|
|
|
|
|
assert_equal(collect(ii, l), "[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(ii.top_cell.name, "c1")
|
|
|
|
|
assert_equal(ii.layout == l, true)
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c2, [0, 1])
|
|
|
|
|
ic = ii.dup
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](0,100;1000,1200)/[c3](1100,100;2100,1200)/[c3](1101,101;2101,1201)")
|
|
|
|
|
assert_equal(collect(ic, l), "[c2](0,100;1000,1200)/[c3](1100,100;2100,1200)/[c3](1101,101;2101,1201)")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c2, 0, RBA::Box.new(-100, 0, 2000, 100), false)
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](0,100;1000,1200)/[c3](1100,100;2100,1200)")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c2, 0, RBA::Box.new(-100, 0, 2000, 100), true)
|
|
|
|
|
assert_equal(collect(ii, l), "")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c2, 0, RBA::Box.new(-100, 0, 2000, 101), true)
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](0,100;1000,1200)/[c3](1100,100;2100,1200)")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c2, [0, 1], RBA::Box.new(-100, 0, 2000, 100), false)
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](0,100;1000,1200)/[c3](1100,100;2100,1200)")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c2, [0, 1], RBA::Box.new(-100, 0, 2000, 101), false)
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](0,100;1000,1200)/[c3](1100,100;2100,1200)/[c3](1101,101;2101,1201)")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c2, [0, 1], RBA::Box.new(-100, 0, 2000, 101), true)
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](0,100;1000,1200)/[c3](1100,100;2100,1200)")
|
|
|
|
|
|
|
|
|
|
ii = RBA::RecursiveShapeIterator::new(l, c0, 0)
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
ii.reset
|
|
|
|
|
ii.unselect_cells("c0")
|
|
|
|
|
ii.select_cells("c2")
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)")
|
|
|
|
|
|
|
|
|
|
ii.reset_selection
|
|
|
|
|
ii.unselect_cells("c*")
|
|
|
|
|
ii.select_cells([ c2.cell_index ])
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
ii.reset_selection
|
|
|
|
|
ii.unselect_all_cells
|
|
|
|
|
ii.select_cells("c2")
|
|
|
|
|
assert_equal(collect(ii, l), "[c2](100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
ii.reset_selection
|
|
|
|
|
ii.select_all_cells
|
|
|
|
|
ii.unselect_cells("c2")
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
ii.reset_selection
|
|
|
|
|
ii.select_cells("c*")
|
|
|
|
|
ii.unselect_cells([ c1.cell_index, c2.cell_index ])
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5x
|
|
|
|
|
|
|
|
|
|
# Recursive shape iterator tests
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
|
|
|
|
|
|
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
|
|
|
|
|
bb = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
c3.shapes(1).insert(bb)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1), RBA::Vector::new(10, 20), RBA::Vector::new(11, 21), 2, 3))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
res = []
|
|
|
|
|
i = l.begin_shapes(c0.cell_index, 0)
|
|
|
|
|
while !i.at_end?
|
|
|
|
|
res << i.shape.box.transformed(i.trans).to_s + " " + i.path.collect { |e| "[" + l.cell(e.cell_inst.cell_index).name + " #" + e.ia.to_s + "," + e.ib.to_s + " -> " + e.specific_trans.to_s + "]" }.join("")
|
|
|
|
|
i.next
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
assert_equal(res.join("\n") + "\n", <<"END")
|
|
|
|
|
(1200,0;2200,1100) [c2 #-1,-1 -> r0 100,-100][c3 #-1,-1 -> r0 1100,0]
|
|
|
|
|
(-1200,0;-100,1000) [c3 #0,0 -> r90 0,0]
|
|
|
|
|
(-1190,20;-90,1020) [c3 #1,0 -> r90 10,20]
|
|
|
|
|
(-1189,21;-89,1021) [c3 #0,1 -> r90 11,21]
|
|
|
|
|
(-1179,41;-79,1041) [c3 #1,1 -> r90 21,41]
|
|
|
|
|
(-1178,42;-78,1042) [c3 #0,2 -> r90 22,42]
|
|
|
|
|
(-1168,62;-68,1062) [c3 #1,2 -> r90 32,62]
|
|
|
|
|
END
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def collect_hier(l)
|
|
|
|
|
|
|
|
|
|
s = ""
|
|
|
|
|
|
|
|
|
|
l.each_cell do |ci|
|
|
|
|
|
|
|
|
|
|
if s != ""
|
|
|
|
|
s += "/"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
s += "[" + l.cell_name(ci.cell_index) + "]"
|
|
|
|
|
|
|
|
|
|
c = []
|
|
|
|
|
ci.each_parent_cell do |parent|
|
|
|
|
|
c.push(l.cell_name(parent))
|
|
|
|
|
end
|
|
|
|
|
s += "(P=" + c.join(",") + ")"
|
|
|
|
|
|
|
|
|
|
c = []
|
|
|
|
|
ci.each_child_cell do |child|
|
|
|
|
|
c.push(l.cell_name(child))
|
|
|
|
|
end
|
|
|
|
|
s += "(C=" + c.join(",") + ")"
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5a
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
# delete_cell
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
|
|
|
|
assert_equal(c0.is_empty?, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
assert_equal(c0.is_empty?, false)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
assert_equal(l.is_valid_cell_index?(c0_index), true)
|
|
|
|
|
l.delete_cell(c0.cell_index)
|
|
|
|
|
assert_equal(l.is_valid_cell_index?(c0_index), false)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c1](P=)(C=)/[c2](P=)(C=c3)/[c3](P=c2)(C=)");
|
|
|
|
|
assert_equal(c3.is_empty?, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
|
|
|
|
assert_equal(c0.is_empty?, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
assert_equal(c0.is_empty?, false)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
assert_equal(l.is_valid_cell_index?(c0_index), true)
|
|
|
|
|
l.cell(c0_index).delete
|
|
|
|
|
assert_equal(l.is_valid_cell_index?(c0_index), false)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c1](P=)(C=)/[c2](P=)(C=c3)/[c3](P=c2)(C=)");
|
|
|
|
|
assert_equal(c3.is_empty?, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5b
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
# delete_cells
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
assert_equal(c0.is_empty?, false)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
c2_index = c2.cell_index
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.delete_cells([c0_index, c2_index])
|
|
|
|
|
assert_equal(collect_hier(l), "[c1](P=)(C=)/[c3](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.delete_cells([c2_index, c0_index])
|
|
|
|
|
assert_equal(collect_hier(l), "[c1](P=)(C=)/[c3](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5d
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
# prune_cell
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
c2_index = c2.cell_index
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.prune_cell(c0_index, -1)
|
|
|
|
|
assert_equal(collect_hier(l), "");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.prune_cell(c2_index, -1)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c3)/[c1](P=c0)(C=)/[c3](P=c0)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
c2_index = c2.cell_index
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.cell(c0_index).prune_cell
|
|
|
|
|
assert_equal(collect_hier(l), "");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.cell(c2_index).prune_cell(-1)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c3)/[c1](P=c0)(C=)/[c3](P=c0)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5e
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
# delete_cell_rec
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
c2_index = c2.cell_index
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.delete_cell_rec(c0_index)
|
|
|
|
|
assert_equal(collect_hier(l), "");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.delete_cell_rec(c2_index)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1)/[c1](P=c0)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5f
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
# delete_cell_rec
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
c2_index = c2.cell_index
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.flatten(c0_index, -1, false)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)/[c1](P=)(C=)/[c2](P=)(C=c3)/[c3](P=c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](1200,0;2200,1100)/[c0](-1200,0;-100,1000)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.flatten(c0_index, -1, true)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](1200,0;2200,1100)/[c0](-1200,0;-100,1000)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.flatten(c0_index, 0, false)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.flatten(c0_index, 1, false)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c3)/[c1](P=)(C=)/[c2](P=)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](-1200,0;-100,1000)/[c3](1200,0;2200,1100)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.flatten(c0_index, 1, true)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c3)/[c3](P=c0)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.cell(c0_index).flatten(false)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)/[c1](P=)(C=)/[c2](P=)(C=c3)/[c3](P=c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](1200,0;2200,1100)/[c0](-1200,0;-100,1000)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.cell(c0_index).flatten(true)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](1200,0;2200,1100)/[c0](-1200,0;-100,1000)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.cell(c0_index).flatten(0, false)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.cell(c0_index).flatten(1, false)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c3)/[c1](P=)(C=)/[c2](P=)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.begin_shapes(c0_index, 0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](-1200,0;-100,1000)/[c3](1200,0;2200,1100)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
l.cell(c0_index).flatten(1, true)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c3)/[c3](P=c0)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.cell(c0_index).begin_shapes_rec(0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](-1200,0;-100,1000)/[c3](1200,0;2200,1100)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ii = l.cell(c0_index).begin_shapes_rec(0);
|
|
|
|
|
assert_equal(collect(ii, l), "[c0](0,100;1000,1200)/[c0](0,100;1000,1200)/[c0](100,0;1100,1100)/[c0](-1200,0;-100,1000)/[c3](1200,0;2200,1100)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_5g
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
# prune_subcells
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
c2_index = c2.cell_index
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.prune_subcells(c0_index, -1)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.prune_subcells(c2_index, -1)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=)/[c3](P=c0)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.prune_subcells(c0_index, 1)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=c3)/[c3](P=c0,c2)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
c0_index = c0.cell_index
|
|
|
|
|
c2_index = c2.cell_index
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
ll = l.dup
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l.cell(c0_index).prune_subcells
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
ll = l.dup
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.cell(c2_index).prune_subcells
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=c1,c2,c3)/[c1](P=c0)(C=)/[c2](P=c0)(C=)/[c3](P=c0)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = ll
|
|
|
|
|
# Hint: even though we deleted c0 and c2, their indices are still valid
|
|
|
|
|
l.cell(c0_index).prune_subcells(1)
|
|
|
|
|
assert_equal(collect_hier(l), "[c0](P=)(C=)");
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_6
|
|
|
|
|
|
|
|
|
|
m = RBA::Manager.new
|
|
|
|
|
l = RBA::Layout.new(m)
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
|
|
|
|
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
|
|
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
def dump_layer(l, layer, cell_name)
|
|
|
|
|
s = []
|
|
|
|
|
cell_index = l.cell_by_name(cell_name)
|
|
|
|
|
iter = l.begin_shapes(cell_index, layer)
|
|
|
|
|
while !iter.at_end
|
|
|
|
|
s.push(iter.shape.box.transformed(iter.trans).to_s)
|
|
|
|
|
iter.next
|
|
|
|
|
end
|
|
|
|
|
return s.join("; ")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def dump_layer_i(l, layer, cell_index)
|
|
|
|
|
s = []
|
|
|
|
|
iter = l.begin_shapes(cell_index, layer)
|
|
|
|
|
while !iter.at_end
|
|
|
|
|
s.push(iter.shape.box.transformed(iter.trans).to_s)
|
|
|
|
|
iter.next
|
|
|
|
|
end
|
|
|
|
|
return s.join("; ")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "")
|
|
|
|
|
|
|
|
|
|
m.transaction("1");
|
|
|
|
|
l.swap_layers(0, 1)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.transaction("2");
|
|
|
|
|
l.copy_layer(1, 0)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.transaction("3");
|
|
|
|
|
l.clear_layer(1)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "")
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.transaction("4");
|
|
|
|
|
l.move_layer(0, 1)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.transaction("5");
|
|
|
|
|
c3.swap(0, 1)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
m.transaction("6");
|
|
|
|
|
c0.copy(1, 0)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
m.transaction("7");
|
|
|
|
|
c0.move(1, 0)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
m.transaction("8");
|
|
|
|
|
c3.copy(0, 0)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (1200,0;2200,1100); (-1200,0;-100,1000); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
ll = l.dup
|
|
|
|
|
|
|
|
|
|
lll = RBA::Layout.new
|
|
|
|
|
lll.assign(l)
|
|
|
|
|
|
|
|
|
|
m.transaction("9");
|
|
|
|
|
l.copy_layer(1, 1)
|
|
|
|
|
m.commit
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (1200,0;2200,1100); (-1200,0;-100,1000); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(ll, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (1200,0;2200,1100); (-1200,0;-100,1000); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(ll, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(lll, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (1200,0;2200,1100); (-1200,0;-100,1000); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(lll, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
# TODO: undo tests crashes in non-editable mode! Should be checked properly.
|
|
|
|
|
if RBA::Application::instance.is_editable?
|
|
|
|
|
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, false)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "9")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "8")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (1200,0;2200,1100); (-1200,0;-100,1000); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "7")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "6")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "5")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "4")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "3")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "")
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "2")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_undo, "1")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
m.undo
|
|
|
|
|
assert_equal(m.has_undo?, false)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_redo, "1")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "")
|
|
|
|
|
|
|
|
|
|
m.redo
|
|
|
|
|
assert_equal(m.has_undo?, true)
|
|
|
|
|
assert_equal(m.has_redo?, true)
|
|
|
|
|
assert_equal(m.transaction_for_redo, "2")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(l, 0, "c0"), "")
|
|
|
|
|
assert_equal(dump_layer(l, 1, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (100,0;1100,1100); (1200,0;2200,1100); (-1200,0;-100,1000)")
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(ll, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (1200,0;2200,1100); (-1200,0;-100,1000); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(ll, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
l.destroy
|
|
|
|
|
m.destroy
|
|
|
|
|
|
|
|
|
|
assert_equal(dump_layer(lll, 0, "c0"), "(0,100;1000,1200); (0,100;1000,1200); (1200,0;2200,1100); (1200,0;2200,1100); (-1200,0;-100,1000); (-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(dump_layer(lll, 1, "c0"), "(0,100;1000,1200); (100,0;1100,1100)")
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_7
|
|
|
|
|
|
|
|
|
|
def dump_layer(l, layer, cell_name)
|
|
|
|
|
s = []
|
|
|
|
|
cell_index = l.cell_by_name(cell_name)
|
|
|
|
|
iter = l.begin_shapes(cell_index, layer)
|
|
|
|
|
while !iter.at_end
|
|
|
|
|
s.push(iter.shape.box.transformed(iter.trans).to_s)
|
|
|
|
|
iter.next
|
|
|
|
|
end
|
|
|
|
|
return s.join("; ")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def dump_layer_i(l, layer, cell_index)
|
|
|
|
|
s = []
|
|
|
|
|
iter = l.begin_shapes(cell_index, layer)
|
|
|
|
|
while !iter.at_end
|
|
|
|
|
s.push(iter.shape.box.transformed(iter.trans).to_s)
|
|
|
|
|
iter.next
|
|
|
|
|
end
|
|
|
|
|
return s.join("; ")
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# clip tests
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
|
|
|
|
|
|
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
ci = l.clip(c0.cell_index, RBA::Box.new(0, 0, 200, 200))
|
|
|
|
|
assert_equal(dump_layer_i(l, 0, ci), "(0,100;200,200); (0,100;200,200); (100,0;200,200)")
|
|
|
|
|
|
|
|
|
|
ci = l.multi_clip(c0.cell_index, [RBA::Box.new(0, 0, 200, 200),RBA::Box.new(1000, 0, 1300, 200)])
|
|
|
|
|
assert_equal(dump_layer_i(l, 0, ci[0]), "(0,100;200,200); (0,100;200,200); (100,0;200,200)")
|
|
|
|
|
assert_equal(dump_layer_i(l, 0, ci[1]), "(1000,0;1100,200); (1200,0;1300,200)")
|
|
|
|
|
|
|
|
|
|
ll = RBA::Layout.new
|
|
|
|
|
ll.dbu = l.dbu
|
|
|
|
|
ll.insert_layer_at(0, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
|
|
|
|
|
ci = l.clip_into(c0.cell_index, ll, RBA::Box.new(0, 0, 200, 200))
|
|
|
|
|
assert_equal(dump_layer_i(ll, 0, ci), "(0,100;200,200); (0,100;200,200); (100,0;200,200)")
|
|
|
|
|
|
|
|
|
|
ci = l.multi_clip_into(c0.cell_index, ll, [RBA::Box.new(0, 0, 200, 200),RBA::Box.new(1000, 0, 1300, 200)])
|
|
|
|
|
assert_equal(dump_layer_i(ll, 0, ci[0]), "(0,100;200,200); (0,100;200,200); (100,0;200,200)")
|
|
|
|
|
assert_equal(dump_layer_i(ll, 0, ci[1]), "(1000,0;1100,200); (1200,0;1300,200)")
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_8
|
|
|
|
|
|
|
|
|
|
# copy shapes between cells
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
s = c0.shapes(1).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
c0c.copy_shapes(c0)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
c0c.clear
|
|
|
|
|
lm = RBA::LayerMapping::new
|
|
|
|
|
lm.map(1, 0)
|
|
|
|
|
c0c.copy_shapes(c0, lm)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), nil)
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
c0c.copy_shapes(c0)
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l), "[c0](0,200;2000,2400)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer1).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l), "[c0](2,202;2002,2402)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer2).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
lm = RBA::LayerMapping::new
|
|
|
|
|
lm.create(l2, l)
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
assert_equal(layer1, nil)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(layer2, nil)
|
|
|
|
|
|
|
|
|
|
lm.create_full(l2, l)
|
|
|
|
|
|
|
|
|
|
c0c.copy_shapes(c0, lm)
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l), "[c0](0,200;2000,2400)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer1).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l), "[c0](2,202;2002,2402)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer2).shape.property("p"), 17)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_9
|
|
|
|
|
|
|
|
|
|
# move shapes between cells
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
s = c0.shapes(1).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
ll = l.dup
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
c0c.move_shapes(c0)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), 17)
|
|
|
|
|
c0.move_shapes(c0c)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "")
|
|
|
|
|
|
|
|
|
|
lm = RBA::LayerMapping::new
|
|
|
|
|
lm.map(1, 0)
|
|
|
|
|
c0c.move_shapes(c0, lm)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), nil)
|
|
|
|
|
|
|
|
|
|
l = ll.dup
|
|
|
|
|
c0 = l.cell("c0")
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
c0c.move_shapes(c0)
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l), "[c0](0,200;2000,2400)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer1).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l), "[c0](2,202;2002,2402)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer2).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
l = ll.dup
|
|
|
|
|
c0 = l.cell("c0")
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
lm = RBA::LayerMapping::new
|
|
|
|
|
lm.create(l2, l)
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
assert_equal(layer1, nil)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(layer2, nil)
|
|
|
|
|
|
|
|
|
|
lm.create_full(l2, l)
|
|
|
|
|
|
|
|
|
|
c0c.move_shapes(c0, lm)
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c1](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l), "[c0](0,200;2000,2400)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer1).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l), "[c0](2,202;2002,2402)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer2).shape.property("p"), 17)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_10
|
|
|
|
|
|
|
|
|
|
# copy instances between cells
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
s = c0.shapes(1).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
i0 = c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
i0.set_property("p", 17)
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
c0c.copy_instances(c0)
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == c1.cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "")
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
err = false
|
|
|
|
|
begin
|
|
|
|
|
c0c.copy_instances(c0)
|
|
|
|
|
rescue => ex
|
|
|
|
|
err = true
|
|
|
|
|
end
|
|
|
|
|
assert_equal(err, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_11
|
|
|
|
|
|
|
|
|
|
# move instances between cells
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
s = c0.shapes(1).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
i0 = c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
i0.set_property("p", 17)
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
c0c.move_instances(c0)
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == c1.cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
err = false
|
|
|
|
|
begin
|
|
|
|
|
c0c.copy_instances(c0)
|
|
|
|
|
rescue => ex
|
|
|
|
|
err = true
|
|
|
|
|
end
|
|
|
|
|
assert_equal(err, true)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_12
|
|
|
|
|
|
|
|
|
|
# copy cell tree
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
s = c1.shapes(0).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
c0.shapes(1).insert(b)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
i0 = c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
i0.set_property("p", 18)
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
c0c.copy_tree(c0)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l.cell("c1$1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
|
|
|
|
assert_equal(l.cell("c1$1").begin_shapes_rec(0).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)/[c2$1](100,0;1100,1100)/[c3$1](1200,0;2200,1100)/[c3$1](-1200,0;-100,1000)/[c1$1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
c0c.copy_tree(c0)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l2.cell("c1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
|
|
|
|
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(l2.cell("c1").begin_shapes_rec(layer1).shape.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l2), "[c0](0,200;2000,2400)/[c2](200,0;2200,2200)/[c3](2400,0;4400,2200)/[c3](-2400,0;-200,2000)/[c1](0,200;2000,2400)")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l2), "[c0](2,202;2002,2402)")
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_13
|
|
|
|
|
|
|
|
|
|
# move cell tree
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
s = c1.shapes(0).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
c0.shapes(1).insert(b)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
i0 = c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
i0.set_property("p", 18)
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
ll = l.dup
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
c0c.move_tree(c0)
|
|
|
|
|
assert_equal(l.has_cell?("c0"), true)
|
|
|
|
|
assert_equal(l.has_cell?("c1"), false)
|
|
|
|
|
assert_equal(l.has_cell?("c2"), false)
|
|
|
|
|
assert_equal(l.has_cell?("c3"), false)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l.cell("c1$1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
|
|
|
|
assert_equal(l.cell("c1$1").begin_shapes_rec(0).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)/[c2$1](100,0;1100,1100)/[c3$1](1200,0;2200,1100)/[c3$1](-1200,0;-100,1000)/[c1$1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
l = ll.dup
|
|
|
|
|
c0 = l.cell("c0")
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
c0c.move_tree(c0)
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(l.has_cell?("c0"), true)
|
|
|
|
|
assert_equal(l.has_cell?("c1"), false)
|
|
|
|
|
assert_equal(l.has_cell?("c2"), false)
|
|
|
|
|
assert_equal(l.has_cell?("c3"), false)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l2.cell("c1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
|
|
|
|
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(l2.cell("c1").begin_shapes_rec(layer1).shape.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l2), "[c0](0,200;2000,2400)/[c2](200,0;2200,2200)/[c3](2400,0;4400,2200)/[c3](-2400,0;-200,2000)/[c1](0,200;2000,2400)")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l2), "[c0](2,202;2002,2402)")
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_14
|
|
|
|
|
|
|
|
|
|
# copy shapes between cell trees
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
s = c0.shapes(1).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
s = c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
s.set_property("p", 18)
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
cm = RBA::CellMapping::new
|
|
|
|
|
cm.for_single_cell(l, c0c.cell_index, l, c0.cell_index)
|
|
|
|
|
c0c.copy_tree_shapes(c0, cm)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)/[c0$1](0,100;1000,1200)/[c0$1](100,0;1100,1100)/[c0$1](-1200,0;-100,1000)/[c0$1](1200,0;2200,1100)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
c0c.clear
|
|
|
|
|
lm = RBA::LayerMapping::new
|
|
|
|
|
lm.map(1, 0)
|
|
|
|
|
c0c.copy_tree_shapes(c0, cm, lm)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), nil)
|
|
|
|
|
|
|
|
|
|
c0c.clear
|
|
|
|
|
cm.for_single_cell_full(l, c0c.cell_index, l, c0.cell_index)
|
|
|
|
|
c0c.copy_tree_shapes(c0, cm)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)/[c2$1](100,0;1100,1100)/[c3$1](1200,0;2200,1100)/[c3$1](-1200,0;-100,1000)/[c1$1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l.cell("c1$1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
cm.for_single_cell_full(l2, c0c.cell_index, l, c0.cell_index)
|
|
|
|
|
c0c.copy_tree_shapes(c0, cm)
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l), "[c0](0,200;2000,2400)/[c2](200,0;2200,2200)/[c3](2400,0;4400,2200)/[c3](-2400,0;-200,2000)/[c1](0,200;2000,2400)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer1).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l), "[c0](2,202;2002,2402)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer2).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l2.cell("c1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_15
|
|
|
|
|
|
|
|
|
|
# move shapes between cell trees
|
|
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
l.insert_layer_at(1, RBA::LayerInfo.new(2, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
c1 = l.cell(l.add_cell("c1"))
|
|
|
|
|
c2 = l.cell(l.add_cell("c2"))
|
|
|
|
|
c3 = l.cell(l.add_cell("c3"))
|
2017-02-12 13:21:08 +01:00
|
|
|
|
2018-02-21 07:47:41 +01:00
|
|
|
b = RBA::Box.new(0, 100, 1000, 1200)
|
|
|
|
|
c0.shapes(0).insert(b)
|
|
|
|
|
c1.shapes(0).insert(b)
|
|
|
|
|
c2.shapes(0).insert(b)
|
|
|
|
|
c3.shapes(0).insert(b)
|
|
|
|
|
b = RBA::Box.new(1, 101, 1001, 1201)
|
|
|
|
|
s = c0.shapes(1).insert(b)
|
|
|
|
|
s.set_property("p", 17)
|
|
|
|
|
|
|
|
|
|
tt = RBA::Trans.new
|
|
|
|
|
s = c0.insert(RBA::CellInstArray.new(c1.cell_index, tt))
|
|
|
|
|
assert_equal(s.is_pcell?, false)
|
|
|
|
|
assert_equal(s.pcell_declaration, nil)
|
|
|
|
|
assert_equal(s.pcell_parameters, [])
|
|
|
|
|
assert_equal(s.pcell_parameters_by_name, {})
|
|
|
|
|
s.set_property("p", 18)
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c2.cell_index, RBA::Trans.new(RBA::Point.new(100, -100))))
|
|
|
|
|
c0.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(1)))
|
|
|
|
|
c2.insert(RBA::CellInstArray.new(c3.cell_index, RBA::Trans.new(RBA::Point.new(1100, 0))))
|
|
|
|
|
|
|
|
|
|
ll = l.dup
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "[c0](1,101;1001,1201)")
|
|
|
|
|
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
cm = RBA::CellMapping::new
|
|
|
|
|
cm.for_single_cell(l, c0c.cell_index, l, c0.cell_index)
|
|
|
|
|
c0c.move_tree_shapes(c0, cm)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)/[c0$1](0,100;1000,1200)/[c0$1](100,0;1100,1100)/[c0$1](-1200,0;-100,1000)/[c0$1](1200,0;2200,1100)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
l = ll.dup
|
|
|
|
|
c0 = l.cell("c0")
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
lm = RBA::LayerMapping::new
|
|
|
|
|
lm.map(1, 0)
|
|
|
|
|
c0c.move_tree_shapes(c0, cm, lm)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[c0](0,100;1000,1200)/[c2](100,0;1100,1100)/[c3](1200,0;2200,1100)/[c3](-1200,0;-100,1000)/[c1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), 17)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), nil)
|
|
|
|
|
|
|
|
|
|
l = ll.dup
|
|
|
|
|
c0 = l.cell("c0")
|
|
|
|
|
c0c = l.cell(l.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
cm.for_single_cell_full(l, c0c.cell_index, l, c0.cell_index)
|
|
|
|
|
c0c.move_tree_shapes(c0, cm)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(0), l), "[c0$1](0,100;1000,1200)/[c2$1](100,0;1100,1100)/[c3$1](1200,0;2200,1100)/[c3$1](-1200,0;-100,1000)/[c1$1](0,100;1000,1200)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(0).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(1), l), "[c0$1](1,101;1001,1201)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(1).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l.cell("c1$1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
|
|
|
|
|
|
|
|
|
l = ll.dup
|
|
|
|
|
c0 = l.cell("c0")
|
|
|
|
|
|
|
|
|
|
l2 = RBA::Layout::new
|
|
|
|
|
l2.dbu = 0.0005
|
|
|
|
|
c0c = l2.cell(l2.add_cell("c0"))
|
|
|
|
|
|
|
|
|
|
cm.for_single_cell_full(l2, c0c.cell_index, l, c0.cell_index)
|
|
|
|
|
c0c.move_tree_shapes(c0, cm)
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "")
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(1), l), "")
|
|
|
|
|
layer1 = l2.find_layer(1, 0)
|
|
|
|
|
layer2 = l2.find_layer(2, 0)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer1), l), "[c0](0,200;2000,2400)/[c2](200,0;2200,2200)/[c3](2400,0;4400,2200)/[c3](-2400,0;-200,2000)/[c1](0,200;2000,2400)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer1).shape.property("p"), nil)
|
|
|
|
|
assert_equal(collect(c0c.begin_shapes_rec(layer2), l), "[c0](2,202;2002,2402)")
|
|
|
|
|
assert_equal(c0c.begin_shapes_rec(layer2).shape.property("p"), 17)
|
|
|
|
|
|
|
|
|
|
i0 = nil
|
|
|
|
|
c0c.each_inst { |i| i.cell_index == l2.cell("c1").cell_index && i0 = i }
|
|
|
|
|
assert_equal(i0.property("p"), 18)
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_16
|
|
|
|
|
|
|
|
|
|
# fill tool
|
|
|
|
|
|
|
|
|
|
l = nil
|
|
|
|
|
c0 = nil
|
|
|
|
|
cf = nil
|
|
|
|
|
b = nil
|
|
|
|
|
|
|
|
|
|
init = lambda {
|
|
|
|
|
|
|
|
|
|
l = RBA::Layout.new
|
|
|
|
|
l.insert_layer_at(0, RBA::LayerInfo.new(1, 0))
|
|
|
|
|
c0 = l.cell(l.add_cell("c0"))
|
|
|
|
|
cf = l.cell(l.add_cell("cf"))
|
|
|
|
|
|
|
|
|
|
b = RBA::Box.new(0, 0, 100, 200)
|
|
|
|
|
cf.shapes(0).insert(b)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
init.call
|
|
|
|
|
|
|
|
|
|
fr = RBA::Region::new
|
|
|
|
|
pts = [ [ 0, 0, ], [ 500, 500 ], [ 500, 0 ] ]
|
|
|
|
|
fr.insert(RBA::Polygon::new(pts.collect { |x,y| RBA::Point::new(x, y) }))
|
|
|
|
|
|
|
|
|
|
c0.fill_region(fr, cf.cell_index, b, RBA::Point::new)
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[cf](200,0;300,200)/[cf](300,0;400,200)/[cf](400,0;500,200)/[cf](400,200;500,400)")
|
|
|
|
|
|
|
|
|
|
init.call
|
|
|
|
|
|
|
|
|
|
fr = RBA::Region::new
|
|
|
|
|
pts = [ [ 0, 0, ], [ 200, 0 ], [ 200, -50 ], [ 400, -50 ], [ 400, 150 ], [ 200, 150 ], [ 200, 400 ], [ 0, 400 ] ]
|
|
|
|
|
fr.insert(RBA::Polygon::new(pts.collect { |x,y| RBA::Point::new(x, y) }))
|
|
|
|
|
|
|
|
|
|
c0.fill_region(fr, cf.cell_index, b, nil)
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[cf](0,150;100,350)/[cf](100,150;200,350)/[cf](200,-50;300,150)/[cf](300,-50;400,150)")
|
|
|
|
|
|
|
|
|
|
init.call
|
|
|
|
|
|
|
|
|
|
rem = RBA::Region::new
|
|
|
|
|
missed = RBA::Region::new
|
|
|
|
|
|
|
|
|
|
c0.fill_region(fr, cf.cell_index, b, nil, rem, RBA::Point::new, missed)
|
|
|
|
|
|
|
|
|
|
assert_equal(collect(c0.begin_shapes_rec(0), l), "[cf](0,150;100,350)/[cf](100,150;200,350)/[cf](200,-50;300,150)/[cf](300,-50;400,150)")
|
|
|
|
|
assert_equal(rem.to_s, "(0,0;0,150;200,150;200,0);(0,350;0,400;200,400;200,350)")
|
|
|
|
|
assert_equal(missed.to_s, "")
|
|
|
|
|
|
|
|
|
|
c0.fill_region(rem, cf.cell_index, b, nil, rem, RBA::Point::new, missed)
|
|
|
|
|
assert_equal(rem.to_s, "")
|
|
|
|
|
assert_equal(missed.to_s, "(0,0;0,150;200,150;200,0);(0,350;0,400;200,400;200,350)")
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def test_17
|
|
|
|
|
|
|
|
|
|
# bug #635:
|
|
|
|
|
ly = RBA::Layout::new
|
|
|
|
|
cell = ly.create_cell("TOP")
|
|
|
|
|
child = ly.create_cell("CHILD")
|
|
|
|
|
|
|
|
|
|
l1 = ly.layer(1, 0)
|
|
|
|
|
child.shapes(l1).insert(RBA::Box::new(-10000, -10000, 10000, 10000))
|
|
|
|
|
|
|
|
|
|
100.times do |j|
|
|
|
|
|
100.times do |i|
|
|
|
|
|
cell.insert(RBA::CellInstArray::new(child.cell_index, RBA::Trans::new(i * 10000, j * 10000)))
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def check(ly, cell)
|
|
|
|
|
|
|
|
|
|
cell.each_inst do |inst|
|
|
|
|
|
# dummy - reqired!
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
bx = RBA::Box::new(0, -100000, 500000, 100000)
|
|
|
|
|
n1 = 0
|
|
|
|
|
cell.each_overlapping_inst(bx) do |inst|
|
|
|
|
|
n1 += 1
|
|
|
|
|
end
|
|
|
|
|
n2 = 0
|
|
|
|
|
cell.each_inst do |inst|
|
|
|
|
|
if inst.bbox.overlaps?(bx)
|
|
|
|
|
n2 += 1
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
[ n1, n2 ]
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
nn = check(ly, cell)
|
|
|
|
|
assert_equal(nn[0], 561)
|
|
|
|
|
assert_equal(nn[1], 561)
|
|
|
|
|
|
|
|
|
|
li = ly.layer(101, 0)
|
|
|
|
|
# this is required to reproduce the issue:
|
|
|
|
|
ly.clear_layer(li)
|
|
|
|
|
|
|
|
|
|
nn = check(ly, cell)
|
|
|
|
|
assert_equal(nn[0], 561)
|
|
|
|
|
assert_equal(nn[1], 561)
|
|
|
|
|
|
|
|
|
|
l1 = ly.layer(1, 0)
|
|
|
|
|
ly.clear_layer(l1)
|
|
|
|
|
|
|
|
|
|
nn = check(ly, cell)
|
|
|
|
|
# intentional - each_overlapping_inst delivers more instances (empty ones too)
|
|
|
|
|
# than the brute force check
|
|
|
|
|
assert_equal(nn[0], 490)
|
|
|
|
|
assert_equal(nn[1], 0)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Cell user properties
|
|
|
|
|
def test_18
|
|
|
|
|
|
|
|
|
|
ly = RBA::Layout::new
|
|
|
|
|
|
|
|
|
|
cell = ly.create_cell("X")
|
|
|
|
|
|
|
|
|
|
assert_equal(cell.prop_id, 0)
|
|
|
|
|
cell.prop_id = 1
|
|
|
|
|
assert_equal(cell.prop_id, 1)
|
|
|
|
|
cell.prop_id = 0
|
|
|
|
|
assert_equal(cell.prop_id, 0)
|
|
|
|
|
|
|
|
|
|
cell.set_property("x", 1)
|
|
|
|
|
assert_equal(cell.prop_id, 1)
|
|
|
|
|
assert_equal(cell.property("x"), 1)
|
|
|
|
|
cell.set_property("x", 17)
|
|
|
|
|
assert_equal(cell.prop_id, 2)
|
|
|
|
|
assert_equal(cell.property("x"), 17)
|
|
|
|
|
assert_equal(cell.property("y"), nil)
|
|
|
|
|
|
|
|
|
|
cell.delete_property("x")
|
|
|
|
|
assert_equal(cell.property("x"), nil)
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
Hash functions and fuzzy compare for RBA
RBA now provides a hash method for Box, Edge, EdgePair, Trans,
Polygon, SimplePolygon, CellInstArray, LayerInfo, Path, Text,
Point and Vector.
eql? is mapped to ==.
==, != and < act "fuzzy" for the double-typed variants.
Hence, these objects can be used as hash keys now.
2017-07-09 22:40:56 +02:00
|
|
|
# LayerInfo hash values
|
|
|
|
|
def test_19
|
|
|
|
|
|
|
|
|
|
l1 = RBA::LayerInfo::new("a")
|
|
|
|
|
l1c = RBA::LayerInfo::new("a")
|
|
|
|
|
l2 = RBA::LayerInfo::new(1, 2, "a")
|
|
|
|
|
l3 = RBA::LayerInfo::new(1, 2)
|
|
|
|
|
|
|
|
|
|
assert_equal(l1.eql?(l2), false)
|
|
|
|
|
assert_equal(l1.eql?(l3), false)
|
|
|
|
|
assert_equal(l2.eql?(l3), false)
|
|
|
|
|
assert_equal(l1.eql?(l1c), true)
|
|
|
|
|
|
|
|
|
|
assert_equal(l1.hash == l2.hash, false)
|
|
|
|
|
assert_equal(l1.hash == l3.hash, false)
|
|
|
|
|
assert_equal(l2.hash == l3.hash, false)
|
|
|
|
|
|
|
|
|
|
h = { l1 => "a", l2 => "b", l3 => "c" }
|
|
|
|
|
assert_equal(h[l1], "a")
|
|
|
|
|
assert_equal(h[l2], "b")
|
|
|
|
|
assert_equal(h[l3], "c")
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2017-02-12 13:21:08 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
load("test_epilogue.rb")
|