I am making a genetic program, but I will limit myself to restrictions in C #, where I want to introduce new functions for the algorithm, but I cannot do this without recompiling the program. In essence, I want the program user to provide the allowed functions, and the GP will automatically use them. It would be great if the user should have known as little as possible about programming.
I want to connect new functions without compiling them into a program. In Python, this is easy since all of this is interpreted, but I don't know how to do this with C #. Does anyone know how to achieve this in C #? Are there libraries, methods, etc.?
c # genetic-algorithm genetic-programming
Kiril
source share