thesis version
This commit is contained in:
20
scripts/common
Normal file
20
scripts/common
Normal file
@ -0,0 +1,20 @@
|
||||
#!/bin/bash
|
||||
|
||||
cc=g++
|
||||
# cc_options="-std=gnu++14 -pthread -ltbb -O2 -I${root}/src -I${root}/inc -DWITH_TBB"
|
||||
cc_options="-std=gnu++14 -pthread -O2 -I${root}/src -I${root}/inc "
|
||||
sources="${root}/src/tsp/*.cpp ${root}/bench/graspels/*.cpp"
|
||||
exe=bench_graspels
|
||||
|
||||
quit() {
|
||||
rm "${exe}"
|
||||
exit 0
|
||||
}
|
||||
|
||||
trap quit SIGINT
|
||||
|
||||
in="gr431"
|
||||
in="dj38"
|
||||
# in="qa194"
|
||||
|
||||
seed=std::mt19937::default_seed
|
Reference in New Issue
Block a user