Implementation of the paper "Target Coverage and Connectivity Problem in Directional Wireless Sensor Networks"
g++10 (The code has been tested on Ubuntu 20.04.)
If you want to visualize the graph, you need to install X11 (to use CImg).
git clone https://github.com/lamductan/DCTC
cd DCTC
unzip third_party.zip
mkdir build
cd build
cmake ..
make
./test/tests
- Run
bash test_script.sh. - Results are saved in
results/{yyyy-mm-dd-HH-MM-SS}/fixed_rs.csvandresults/{yyyy-mm-dd-HH-MM-SS}/fixed_rc.csv, where{yyyy-mm-dd-HH-MM-SS}is the timestamp of running the script. (Paths to the result files are also echo-ed on the terminal).
- Go to
builddirectory and run./test/tests_visualization. - After the test is run, the input instance and the result graphs are saved in the folder
visualization/samples. - Then
cd visualizationand run the commandbash build_and_run.sh.
Black: targets
Red: Coverage sensors (terminals)
Green: Type-1 relays
Yellow: Type-2 relays
Cyan: Type-3 relays
Blue: Type-4 (short edge) relays
Input targets together with the coverage sensors outputted by Strip-based algorithm and the MST over the set of sensors: 21 sensors are needed

Aschner's algorithm: 73 sensors are needed, beta = 3.476

Tran's algorithm: 84 sensors are needed, beta = 4.000

Lam's LongEdgeFirst algorithm: 58 sensors are needed, beta = 2.762

Lam's ShortEdgeFirst algorithm: 62 sensors are needed, beta = 2.952
