Go to file
Stephen Seo 0dba6874ad Implement forMatchingSignatures for efficiency
EC::Manager::forMatchingSignatures is different from
EC::Manager::forMatchingSignature in that it takes multiple signatures
and functions and iterates through all entities once. The trade-off is
that a vector of vectors is created to store matching entities.
This function can be called to use multiple threads as well, similar
to the "non-plural" version of this function.

See the doxygen-style documentation in src/EC/Manager.hpp for
forMatchingSignatures (or the generated doxygen html) for how to use.
Usage example is in the last unit test function in src/test/ECTest.hpp .
2017-11-09 21:17:40 +09:00
src Implement forMatchingSignatures for efficiency 2017-11-09 21:17:40 +09:00
.gitignore Added Doxygen comments 2016-03-14 20:01:55 +09:00
.gitlab-ci.yml Updated .gitlab-ci.yml 2016-03-19 01:05:43 +09:00
AttributionNotice Added License and legal related requirements 2016-03-15 19:29:13 +09:00
Doxyfile Added Doxygen comments 2016-03-14 20:01:55 +09:00
LICENSE Added License and legal related requirements 2016-03-15 19:29:13 +09:00
README.md Updated README.md 2017-06-10 22:17:37 +09:00

Compiling

Create a build directory.
mkdir build

Generate makefile with CMake.
cd build
cmake -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=True ../src

Build the project.
make

Optionally install the project to where CMAKE_INSTALL_PREFIX was set.
make install