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