How do I permute channels?

This board is to show, discuss and archive useful combinator- and logic-creations.
Smart triggering, counters and sensors, useful circuitry, switching as an art :), computers.
Please provide if possible always a blueprint of your creation.
polymer
Manual Inserter
Manual Inserter
Posts: 3
Joined: Sat Nov 09, 2024 5:22 pm
Contact:

How do I permute channels?

Post by polymer »

Sorry if this is posted in the wrong place!

I currently have a circuit, that sets the recipe of a grinder based on the astroid chunk either on a belt or in storage.

Currently, I have a couple solutions, the simplest to understand, is just three decider switches in parallel checking whether a specific resource is nonzero, And outputs the recipe that uses it if so.

I'd like to make this a bit more generic if possible. I think the "real problem" is - given I know which recipes I want, how do I determine of them what's possible, given the resources to build with I'm given?

But I'm interested in solutions to both of the above.
Example of asteroids crushed based on what's on belt
Example of asteroids crushed based on what's on belt
Automate_Recipe.png (3.37 MiB) Viewed 848 times

Tertius
Filter Inserter
Filter Inserter
Posts: 903
Joined: Fri Mar 19, 2021 5:58 pm
Contact:

Re: How do I permute channels?

Post by Tertius »

It's not a permutation, it's a lookup. For every given input signal, you want to return a certain output signal.

You have a list of assignments of [a]→[1], (b]→[2], ... [N]→[n] so that if some input is [a], the output is [1], input=(b] output=[2] and so on, with less than [n] combinators. All the [1]..[n] must return some positive number (to make it valid as recipe input).

I failed so far with less than 3 combinators.
I need 1 combinator for selecting 1 signal (whatever it is, for example the largest).
Then I provide a list of possible inputs, each with an identifying value (a numeric index). With a decider combinator, this index value can be picked and assigned to a signal (I].
Then I provide a list of possible outputs, each with the same identifying value (the index). With another decider combinator, I pick the signal from the list with the corresponding index value and return it.

Works, however I need 3 combinators, so it's only useful for mapping more than 3 possible signals. It also requires the possible input values be greater then their corresponding input values, so they need to be bigger than 3 for 3 input signals.

My example (designed for oil → oil recipes, but it's the same as for asteroid recipes)

11-09-2024, 23-16-46.png
11-09-2024, 23-16-46.png (116.94 KiB) Viewed 804 times
11-09-2024, 23-18-14.png
11-09-2024, 23-18-14.png (78.7 KiB) Viewed 804 times
11-09-2024, 23-18-30.png
11-09-2024, 23-18-30.png (110.71 KiB) Viewed 804 times
11-09-2024, 23-18-49.png
11-09-2024, 23-18-49.png (107.18 KiB) Viewed 804 times

polymer
Manual Inserter
Manual Inserter
Posts: 3
Joined: Sat Nov 09, 2024 5:22 pm
Contact:

Re: How do I permute channels?

Post by polymer »

Thank you! Forcing it to select one of the ingredients at the beginning is a great idea to simplify the whole problem! I was trying to figure out how to have it operate on all the resources at the same time (and I guess, calling that a permutation wasn't a good way to communicate that goal), but your approach is much simpler.

I did manage to come up with something for the deeper problem that isn't quite as principled, but only uses one chip and constant combinator. I'm using a selector chip to randomly pick a recipe to use, the recipe then gets locked in when the inserter puts the requisite ingredients into the the grinder. It seems to work well enough for small sets of recipes, and is very simple, I'm happy!

I'll keep your solution in mind, if I need to work with a larger number of recipes.
Small circuit to choose recipes
Small circuit to choose recipes
Simple recipe example.png (411.22 KiB) Viewed 785 times

Barn
Manual Inserter
Manual Inserter
Posts: 3
Joined: Sun May 28, 2017 4:54 pm
Contact:

Re: How do I permute channels?

Post by Barn »

Tertius wrote:
Sat Nov 09, 2024 10:23 pm
It's not a permutation, it's a lookup. For every given input signal, you want to return a certain output signal.

You have a list of assignments of [a]→[1], (b]→[2], ... [N]→[n] so that if some input is [a], the output is [1], input=(b] output=[2] and so on, with less than [n] combinators. All the [1]..[n] must return some positive number (to make it valid as recipe input).

I failed so far with less than 3 combinators.
I need 1 combinator for selecting 1 signal (whatever it is, for example the largest).
Then I provide a list of possible inputs, each with an identifying value (a numeric index). With a decider combinator, this index value can be picked and assigned to a signal (I].
Then I provide a list of possible outputs, each with the same identifying value (the index). With another decider combinator, I pick the signal from the list with the corresponding index value and return it.

Works, however I need 3 combinators, so it's only useful for mapping more than 3 possible signals. It also requires the possible input values be greater then their corresponding input values, so they need to be bigger than 3 for 3 input signals.

My example (designed for oil → oil recipes, but it's the same as for asteroid recipes)


11-09-2024, 23-16-46.png
11-09-2024, 23-18-14.png
11-09-2024, 23-18-30.png
11-09-2024, 23-18-49.png
I was using a similar setup for chunk processing and came up with another variation. I wanted it to prioritize keeping ice stocked but also be able to switch to the other recipes when ice chunks are unavailable. This is what I came up with; the main difference is that the IDs are powers of 2, and I do the mapping with an arithmetic combinator ANDing each associated ID value with the result from the decider. This lets you filter on multiple associated criteria.
Screenshot 2024-11-10 233823.png
Screenshot 2024-11-10 233823.png (385.42 KiB) Viewed 718 times
Screenshot 2024-11-10 233835.png
Screenshot 2024-11-10 233835.png (636.47 KiB) Viewed 718 times
Screenshot 2024-11-10 233847.png
Screenshot 2024-11-10 233847.png (585.03 KiB) Viewed 718 times
Screenshot 2024-11-10 234639.png
Screenshot 2024-11-10 234639.png (586.36 KiB) Viewed 718 times
Screenshot 2024-11-10 233906.png
Screenshot 2024-11-10 233906.png (590.01 KiB) Viewed 718 times
Screenshot 2024-11-10 233917.png
Screenshot 2024-11-10 233917.png (525.55 KiB) Viewed 718 times

polymer
Manual Inserter
Manual Inserter
Posts: 3
Joined: Sat Nov 09, 2024 5:22 pm
Contact:

Re: How do I permute channels?

Post by polymer »

Wonderful! I didn't think to try bitsets, but that's perfect!

Post Reply

Return to “Combinator Creations”