"""
    show(io::IO, ops::PossibleOperations)

Print a string representation of the set of possible operations to io.
"""
function show(io::IO, ops::PossibleOperations)
    print(io, length(ops.nodeFusions))
    println(io, " Node Fusions: ")
    for nf in ops.nodeFusions
        println(io, "  - ", nf)
    end
    print(io, length(ops.nodeReductions))
    println(io, " Node Reductions: ")
    for nr in ops.nodeReductions
        println(io, "  - ", nr)
    end
    print(io, length(ops.nodeSplits))
    println(io, " Node Splits: ")
    for ns in ops.nodeSplits
        println(io, "  - ", ns)
    end
end

"""
    show(io::IO, op::NodeReduction)

Print a string representation of the node reduction to io.
"""
function show(io::IO, op::NodeReduction)
    print(io, "NR: ")
    print(io, length(op.input))
    print(io, "x")
    return print(io, task(op.input[1]))
end

"""
    show(io::IO, op::NodeSplit)

Print a string representation of the node split to io.
"""
function show(io::IO, op::NodeSplit)
    print(io, "NS: ")
    return print(io, task(op.input))
end

"""
    show(io::IO, op::NodeFusion)

Print a string representation of the node fusion to io.
"""
function show(io::IO, op::NodeFusion)
    print(io, "NF: ")
    print(io, task(op.input[1]))
    print(io, "->")
    print(io, task(op.input[2]))
    print(io, "->")
    return print(io, task(op.input[3]))
end