21 lines
		
	
	
		
			373 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			373 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/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
 |