Add boolean option to cut looping behaviors and redirect them to alternatives.
Examples:
Uncutted
unrolled_graph = unroll_graph(gather_wood.graph)
Cutted
unrolled_graph = unroll_graph(gather_wood.graph, cut_looping_alternatives=True)
Uncutted
unrolled_graph = unroll_graph(get_new_axe.graph)
Cutted
unrolled_graph = unroll_graph(get_new_axe.graph, cut_looping_alternatives=True)