Consider the case where I have two programs written in C++.
They each configure they own graphics environment, then they communicate with each other and pass a file descriptor which is meant to allow them to talk to each other via dma buf.
But the dma buf connection doesn’t work.
I know that somewhere amongst all the permutations of configurations of graphics, sockets and dma buf is a set of configuration parameters that works.
Normally I would try to find the problem by getting something to work and divide the problem in half and do some educated guessing until I find which configuration parameters were incorrect, and then the whole thing will work.
But this might take days or even weeks.
I wonder if there’s a way I can somehow use AI to brute force the problem, iterate through all possible arguments until it find the working configuration.
Is such a thing possible? Is anyone else doing this? What field of AI should I look into to develop my skills in this type of problem solving? Cause right now I am spending too much time solving problems, it would be nice if the computer could do it for me please.