The BKS project, the CZ project and the PVHSS project include benchmarking of the BKS scheme, the CZ scheme and the PVHSS scheme, and the performance of these schemes in evaluating multivariate polynomial functions.
The DecisionTree_BGV_CKKS project and the DecisionTree_PVHSS project show the efficiency of BGV, CKKS and PVHSS for evaluating decision trees on private data.
In our paper, we limit the frequency of the CPU to 800MHZ, in order to simulate the resource-restricted clients. If you want to get the same test results as in the paper, you need to limit the CPU frequency to 800MHZ when executing the algorithm on the client side.
In the coding, we chose CLion as IDE. Therefore, if you use CLion as IDE it will help you deploy this project more conveniently.
wget http://mirrors.kernel.org/gnu/m4/m4-1.4.13.tar.gz
tar -xzvf m4-1.4.13.tar.gz
cd m4-1.4.13
./configure --prefix=/usr/local
sudo make
sudo make install
wget http://mirrors.kernel.org/gnu/autoconf/autoconf-2.65.tar.gz
tar -xzvf autoconf-2.65.tar.gz
cd autoconf-2.65
./configure --prefix=/usr/local
sudo make
sudo make install
wget http://mirrors.kernel.org/gnu/automake/automake-1.11.tar.gz
tar xzvf automake-1.11.tar.gz
cd automake-1.11
./configure --prefix=/usr/local
sudo make
sudo make install
wget http://mirrors.kernel.org/gnu/libtool/libtool-2.2.6b.tar.gz
tar xzvf libtool-2.2.6b.tar.gz
cd libtool-2.2.6b
./configure --prefix=/usr/local
sudo make
sudo make install
tar -jxvf gmp-6.2.1.tar.bz2
cd gmp-6.2.1
./configure --prefix=/usr/local
sudo make
sudo make install
make check
tar -xzvf cmake-3.10.2.tar.gz
cd cmake-3.10.2
./configure --prefix=/usr/local
sudo make
sudo make install
tar -xzvf ntl-11.5.1.tar.gz
cd ntl-11.5.1/src
./configure
make
sudo make install