Skip to content

Commit

Permalink
Remove vertical lines from big table
Browse files Browse the repository at this point in the history
Signed-off-by: Evangelos Lamprou <[email protected]>
  • Loading branch information
vagos committed Jan 14, 2025
1 parent 7297c40 commit 706c226
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infrastructure/colossal_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def make_input_description(row):
return desc
else:
# Center the N/A
return "\\multicolumn{1}{c|}{N/A}"
return "\\multicolumn{1}{c}{N/A}"

def main():
syntax_script, syntax_bench = stx.read_data(True)
Expand Down Expand Up @@ -259,9 +259,9 @@ def main():
print("""
\\def\\idw{7em}
\\setlength{\\tabcolsep}{3pt}
\\begin{tabular}{l|lrr|l|rr|rrrr|lrc}
\\begin{tabular}{llrrlrrrrrrlrc}
\\toprule
\\multirow{2}{*}{Benchmark/Script} & \\multicolumn{3}{c|}{Surface} & \\multicolumn{1}{c|}{Inputs} & \\multicolumn{2}{c|}{Syntax} & \\multicolumn{4}{c|}{Dynamic} & \\multicolumn{2}{c}{System} & Source \\\\
\\multirow{2}{*}{Benchmark/Script} & \\multicolumn{3}{c}{Surface} & \\multicolumn{1}{c}{Inputs} & \\multicolumn{2}{c}{Syntax} & \\multicolumn{4}{c}{Dynamic} & \\multicolumn{2}{c}{System} & Source \\\\
& Dom & \\#.sh & LOC & & \\# Cons & \\# Cmd & T.sh & T.cmd & Mem & I/O & \\# s/c & \\# fd & \\\\
\\midrule
""")
Expand Down

0 comments on commit 706c226

Please sign in to comment.