I propose making the Arithmetic Combinator as complex as the Decider Combinator: so that it can perform multiple operations per tick.
What?
With the ability to perform parallel and sequential operations (similar to AND (PARALLEL WITH) and OR (THEN) for the Decider Combinator):
Code: Select all
A = A + 1
PARALLEL WITH
B = B + 1
THEN
C = A / B
THEN
...
Code: Select all
A = D - 1
THEN
Every = Every + A
PARALLEL WITH
A = 0 + 0 # Remove the intermediate value from the combinator output
THEN
Every = Every / D
Why?
I love logic networks and would like some new updates to the combinators, too, so I can build my circuits in a new way.

