Open mcguu opened 3 years ago
Instead of calling a dll, you can use C# to create a child process running the katago.exe
Yes, just invoke KataGo as a separate process and use the analysis engine whose interface is fully documented here: https://github.com/lightvector/KataGo/blob/master/docs/Analysis_Engine.md
@mega-optimus what about swift? in mac?
@mcguu You can use Julia Lang if you have a time of ten days to learn it. By Julia, run and stop katago.exe are as easy as
cmd=`./katago.exe mode cfg model`
open(cmd)
close(cmd)
If I use other language such as .net how to compile it to dll so a c# can call it?