Particle Swarm Optimization in C++ [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to implement the PSO algorithm in C++. Is there any C++ library I can use to start with?

Particleswarm.info hosts a good PSO toolbox repository.

Related

How to create Windows Service in C/C++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to create Windows Service (application running in background) using C/C++ language. How can I do this, can you give me a tutorial ?
Another platform independent way is to use boost::application
Example how to use can be found here.

Code/library for Poisson Disk Sampling in C/C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm looking for a library that implements Poisson Disk Sampling in C or C++, or another one that would be easily translatable. Preferable not incredible long source, but if it is that's okay too.
Here is a clean single-file implementation in C++:
https://github.com/corporateshark/poisson-disk-generator

Free alternative to SQLAPI++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Are there any free (and maybe open source) alternatives to SQLAPI++? This library looks very good but it is not free.
You can look at the CppCMS project which has the CppDB library.

Implementing Reflection in C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I have been interesting implementing Reflection in C++, I have a slapped together Reflection, but I am interested in seeing how others have it done. Does anyone know any tutorials, articles or sample code on how to do this?
http://lcgapp.cern.ch/project/architecture/ReflectionPaper.pdf

Distributed computing framework in c/c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a way to make distributed computing over a network (lan). Is there any good framework or a library for this purpose in C/C++.
Take a look at MPI.
Yes. Have you looked at MPI via e.g. Open MPI ?