Cleaning repository

This commit is contained in:
Loïc Guégan 2024-06-30 14:49:37 +02:00
parent 42594cfab4
commit 8260634af4
80 changed files with 169459 additions and 541081 deletions

15
analysis/scheduler/hint_fw.awk Executable file
View file

@ -0,0 +1,15 @@
#!/usr/bin/awk -f
BEGIN {
RS="\n"
FS=" "
CSV_HEADER="node,ts"
CSV_DATA=""
skip=1
print(CSV_HEADER)
}
/forward a hint successfully/ {
gsub("]","",$0)
print($4","$2)
}