| <h3 id='___compare_nets'>compare_nets</h3> | |
| <pre>Check equivalence of two nets in the reference and implementation netlist | |
| <b>Usage:</b> my $result = compare_nets($net0, $net1, @options); | |
| $net0: The net in the reference netlist. | |
| $net1: The net in the implementation netlist. | |
| @options: | |
| $result: 1, they are equal, | |
| 0, they are not equal. | |
| <b>Examples:</b> | |
| #1 Compare reg1/D in the reference and reg1/D in the implementation netlist | |
| compare_nets("reg1/D", "reg1/D"); | |
| </pre> |