()
| 568 | |
| 569 | // Swap inputs without letting either input go dead during the swap. |
| 570 | Node swap12() { |
| 571 | unlock(); // Hash is order dependent |
| 572 | Node tmp = in(1); |
| 573 | _inputs.set(1,in(2)); |
| 574 | _inputs.set(2,tmp); |
| 575 | return this; |
| 576 | } |
| 577 | |
| 578 | /** |
| 579 | * Does this node contain all constants? Ignores in(0), as is usually |