Licensed under a Apache 2 style license.
HARM is a helpful association rule miner. It finds associations in transaction data sets using multiple methods. HARM is written in C++.
To build:
- Download and install CMake.
- git clone https://github.com/cpearce/HARM.git
- git submodule init
- git submodule update
- mkdir build
- cd build
- cmake ..
Build systems appropriate for your platform will then be generated.
Tests are gtests. To add a new test:
- Create a new gtest file in tests/Test_NAME.cpp.
- Add NAME to the test_case loop in CMakeLists.txt.
- cd build.
- cmake ..
- ctest -V