Thanks in advance for helping me with this routing problem. It's for a digital instrument I'm building, six sine-wave oscillators that feed back into each other in a kind of recursive web.
Here's the mission:
You have six modules. Each module connects to three other modules, and is connected to by three other modules: i.e. each module has three outputs and three inputs. A module never connects to itself, or to the same module $2+$ times. So $1$ might connect to $234$, but not to $123, 233,$ etc.
Here's the hard part:
If module $X$ connects to $Y, Y$ cannot connect back to $X$. If $1$'s output port connects to $2$'s input port, $2$'s output cannot connect back to $1$'s input. So there can only be one connection between a pair of modules.
The connection scheme is a consistent pattern. If $1$ connects to $234, 2$ should connect to $345$, etc. I'm looking for a patterned web of connections between six modules where no module connects to a module that connects back to it.
I don't know if this is possible. Perhaps it's a breeze and I'm just not seeing it. In any case, thanks for your help!
