Dnomd343
4 years ago
2 changed files with 16 additions and 10 deletions
@ -1,7 +1,17 @@ |
|||
#!/bin/sh |
|||
|
|||
echo "merge farthest..." |
|||
cat ./farthest/* > ./release/farthest.csv |
|||
cat ./farthest/* > ./farthest_raw.csv |
|||
|
|||
echo "merge solution..." |
|||
cat ./solution/* > ./release/solution.csv |
|||
cat ./solution/* > ./solution_raw.csv |
|||
|
|||
g++ -O3 ../tools/streamline_csv.cpp -o ./streamline_csv |
|||
./streamline_csv |
|||
|
|||
mv ./farthest.csv ./release/farthest.csv |
|||
mv ./solution.csv ./release/solution.csv |
|||
|
|||
rm ./farthest_raw.csv |
|||
rm ./solution_raw.csv |
|||
rm ./streamline_csv |
Loading…
Reference in new issue