mirror of https://github.com/KLayout/klayout.git
Enabled 'lvs_data' as a new global function for LVS (for consistency)
This commit is contained in:
parent
5f73d11fb1
commit
6e15ebb3a1
|
|
@ -100,6 +100,15 @@ See <a href="/about/lvs_ref_netter.xml#ignore_parameter">Netter#ignore_parameter
|
|||
<p>
|
||||
See <a href="/about/lvs_ref_netter.xml#join_symmetric_nets">Netter#join_symmetric_nets</a> for a description of that function.
|
||||
</p>
|
||||
<a name="lvs_data"/><h2>"lvs_data" - Gets the <a href="#LayoutVsSchematic">LayoutVsSchematic</a> object after compare was used</h2>
|
||||
<keyword name="lvs_data"/>
|
||||
<p>Usage:</p>
|
||||
<ul>
|
||||
<li><tt>lvs_data</tt></li>
|
||||
</ul>
|
||||
<p>
|
||||
See <a href="/about/lvs_ref_netter.xml#lvs_data">Netter#lvs_data</a> for a description of that function.
|
||||
</p>
|
||||
<a name="max_branch_complexity"/><h2>"max_branch_complexity" - Configures the maximum branch complexity for ambiguous net matching</h2>
|
||||
<keyword name="max_branch_complexity"/>
|
||||
<p>Usage:</p>
|
||||
|
|
|
|||
|
|
@ -201,9 +201,15 @@ module LVS
|
|||
# @synopsis disable_parameter(device_class_name, parameter_name)
|
||||
# See \Netter#disable_parameter for a description of that function.
|
||||
|
||||
# %LVS%
|
||||
# @name lvs_data
|
||||
# @brief Gets the \LayoutVsSchematic object after compare was used
|
||||
# @synopsis lvs_data
|
||||
# See \Netter#lvs_data for a description of that function.
|
||||
|
||||
%w(schematic compare join_symmetric_nets tolerance ignore_parameter enable_parameter disable_parameter
|
||||
blank_circuit align same_nets same_nets! same_circuits same_device_classes equivalent_pins
|
||||
min_caps max_res max_depth max_branch_complexity consider_net_names).each do |f|
|
||||
min_caps max_res max_depth max_branch_complexity consider_net_names lvs_data).each do |f|
|
||||
eval <<"CODE"
|
||||
def #{f}(*args)
|
||||
_netter.#{f}(*args)
|
||||
|
|
|
|||
Loading…
Reference in New Issue