// Links the output of this computer to the input of the target computer. public void OutputTo(V4 target) { target.Input = Output; }
public V4(V4 source) { Memory = new BigInteger[source.Memory.Length]; Array.Copy(source.Memory, Memory, Memory.Length); }