Hi,
ecoAddRepeater is used for adding cells or instance but this wont be much efficient.,
any how we can use this for adding an new instance and not for connecting two floting cells or instace.
if we need to delete a some instance in the middle of level ie, if we have a filp through port connected by 7 buffers as BUF1, BUF2......
i want only BUF1 and BUF7 in that path what can i do ? here is the answer
we can use deleteInst and delete all the unwanted buffers, now we have BUF1 and BUF7 left, but
it is unconnected (if we go for report_timing it will show unconstrain path), so we need to connect those buffers.,
we can use the following command
attachTerm BUF1 I BUF7/Z/netname
BUF1 -> instance name
I -> it is the I pin of BUF1 (BUF/I)
BUF7/Z/netname -> this is the net connected to the BUF7/Z pin.
now go for report_timing you will find the path with two buffers.
good luck