| 362 | } |
| 363 | |
| 364 | type Compare2 struct { |
| 365 | inputA circuit.Wire |
| 366 | inputB circuit.Wire |
| 367 | xor1 circuit.XORGate |
| 368 | not1 circuit.NOTGate |
| 369 | and1 circuit.ANDGate |
| 370 | andgate3 ANDGate3 |
| 371 | or1 circuit.ORGate |
| 372 | out circuit.Wire |
| 373 | equalIn circuit.Wire |
| 374 | equalOut circuit.Wire |
| 375 | isLargerIn circuit.Wire |
| 376 | isLargerOut circuit.Wire |
| 377 | } |
| 378 | |
| 379 | func NewCompare2() *Compare2 { |
| 380 | c := new(Compare2) |
nothing calls this directly
no outgoing calls
no test coverage detected