stud

study spacejunk
Log | Files | Refs | LICENSE

commit b898aaeeeca8f0e1e7c52b7cb4bc63e9a8638c83 (tree)
parent b3a88737b905086b30b11e567a5e888032793994
Author: Motiejus Jakštys <motiejus@uber.com>
Date:   Fri,  2 Apr 2021 06:22:10 +0300

rename files

Diffstat:
MIV/Makefile | 2+-
MIV/extract-and-generate | 4++--
MIV/mj-msc.tex | 4++--
3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/IV/Makefile b/IV/Makefile @@ -35,7 +35,7 @@ slides: $(SLIDES) mj-msc.pdf: mj-msc.tex test-figures.pdf version.tex bib.bib latexmk -shell-escape -g -pdf $< -mj-msc-all.pdf: mj-msc.pdf version.tex $(ARCHIVABLES) +mj-msc-full.pdf: mj-msc.pdf version.tex $(ARCHIVABLES) cp $< .tmp-$@ for f in $^; do \ if [ "$$f" = "$<" ]; then continue; fi; \ diff --git a/IV/extract-and-generate b/IV/extract-and-generate @@ -1,8 +1,8 @@ #!/bin/bash set -euo pipefail dir=$(mktemp -d) -src=${1:-mj-msc-all.pdf} -dst=${2:-mj-msc.pdf} +src=${1:-mj-msc.pdf} +dst=${2:-mj-msc-full.pdf} echo "Extracting $src to $dir/" && pdfdetach -saveall -o "$dir" "$src" echo "Generating $dir/$dst ..." make -j $(nproc) -C "$dir" "$dst" &> "$dir/make.log" || { diff --git a/IV/mj-msc.tex b/IV/mj-msc.tex @@ -213,7 +213,7 @@ line direction. The full test suite can be executed with a single command, and completes in a few seconds. Having an easily accessible test suite boosts confidence that no -unexpected regressions have been added while modifying the algorithm. +unexpected bugs have been created while modifying the algorithm. \section{Description of the implementation} @@ -255,7 +255,7 @@ We strongly believe in the ability to reproduce the results is critical for any scientific work. To make it possible for this paper, all source files and accompanying scripts have been attached to the PDF. To re-generate this document and its accompanying graphics, run this script (assuming name of - this document is {\tt mj-msc-all.pdf}): + this document is {\tt mj-msc-full.pdf}): \inputminted[fontsize=\small]{bash}{extract-and-generate}