From 525b0031c403270408b551d6676fd795fc6cbf9a Mon Sep 17 00:00:00 2001 From: Joachim Tingvold Date: Sun, 2 Apr 2017 03:15:38 +0200 Subject: Full one-liner added to planning. --- planning/planning.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'planning/planning.cpp') diff --git a/planning/planning.cpp b/planning/planning.cpp index 8aeb503..9ba88e1 100644 --- a/planning/planning.cpp +++ b/planning/planning.cpp @@ -6,6 +6,10 @@ // (runs n iterations, each iteration is O(VE), V is O(n), E is O(dn))). // // g++ -std=gnu++11 -Wall -g -O3 -fopenmp -DOUTPUT_FILES=1 -o planning planning.cpp && ./planning -4 6 14 -23 24 -30 32 37 -38 +// +// Full one-liner: +// rm planning ; g++ -std=gnu++11 -Wall -g -O3 -fopenmp -DOUTPUT_FILES=1 -o planning planning.cpp && ./planning -4 6 14 -23 24 -30 32 37 -38 ; sort -k 2,2 -k 1,1V patchlist.txt > patchlist.txt.distrosort ; cp patchlist.txt* switches.txt ../ + #include #include -- cgit v1.2.3