Create and Run Multiple Solver Instances in Parallel
I’d like to run multiple solvers in multiple threads and eventually processes. I’m currently running a for-loop and creating threads like the following: for (…) { pthread_t pid; Args args; args.solver = solver??? pthread_create(&pid, NULL, &func, (void*)&args); } When defining solver, I’ve tried several options, though none have worked. First, I tried calling const auto… Read More Create and Run Multiple Solver Instances in Parallel