CoolFace
Apppublic

gofeco/support

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
api.set_tree.txt19 linesDownload Raw Back to src_en
1<h3 id='___set_tree'>set_tree</h3>2<pre>Set the current tree, if there are more than one sets of databases (LLM: tree)3<b>Usage:</b> set_tree($tree);4$tree: It can be Top, Top_ref, Top_1 or Top_25       Top: The Implementation Netlist6       Top_ref: The Reference Netlist7       Top_1: The netlist loaded by -Top_1 option8       Top_2: The netlist loaded by -Top_2 option9       If $tree is not defined, the current database name is returned10 11<b>Note:</b> Implementation tree 'Top' has aliases of 'imp', 'IMP'12      Reference tree 'Top_ref' has aliases of 'ref', 'REF'13 14<b>Examples:</b>15 16set_tree("Top"); # Set to the Implementation Netlist tree17set_tree("Top_ref"); # Set to the Reference Netlist tree18set_tree();  # Return the current database name. E.G. 'Top_ref'19</pre>