ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
pthread-emulation
qualifiedEnum
|
Last change
on this file since 060b12d was 060b12d, checked in by Aaron Moss <a3moss@…>, 7 years ago |
|
Add scatter plots describing instance difficulty
|
-
Property mode
set to
100644
|
|
File size:
1.8 KB
|
| Line | |
|---|
| 1 | BUILD = build
|
|---|
| 2 | BIBDIR = ../../../bibliography
|
|---|
| 3 | EVALDIR = evaluation
|
|---|
| 4 | FIGDIR = figures
|
|---|
| 5 | TEXLIB = .:${BUILD}:${BIBDIR}:
|
|---|
| 6 |
|
|---|
| 7 | # LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction=nonstopmode -halt-on-error -output-directory=${BUILD}
|
|---|
| 8 | LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${BUILD}
|
|---|
| 9 | BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex
|
|---|
| 10 |
|
|---|
| 11 | VPATH = ${EVALDIR} ${FIGDIR}
|
|---|
| 12 |
|
|---|
| 13 | BASE = thesis
|
|---|
| 14 | DOCUMENT = ${BASE}.pdf
|
|---|
| 15 | BIBFILE = ${BIBDIR}/pl.bib
|
|---|
| 16 |
|
|---|
| 17 | SOURCES = ${addsuffix .tex, \
|
|---|
| 18 | thesis \
|
|---|
| 19 | macros \
|
|---|
| 20 | cfa-macros \
|
|---|
| 21 | frontpgs \
|
|---|
| 22 | introduction \
|
|---|
| 23 | background \
|
|---|
| 24 | generic-types \
|
|---|
| 25 | resolution-heuristics \
|
|---|
| 26 | type-environment \
|
|---|
| 27 | experiments \
|
|---|
| 28 | conclusion \
|
|---|
| 29 | }
|
|---|
| 30 |
|
|---|
| 31 | FIGURES = ${addsuffix .eps, \
|
|---|
| 32 | safe-conv-graph \
|
|---|
| 33 | resolution-dag \
|
|---|
| 34 | union-find-with-classes \
|
|---|
| 35 | persistent-union-find \
|
|---|
| 36 | }
|
|---|
| 37 |
|
|---|
| 38 | GRAPHS = ${addsuffix .tex, \
|
|---|
| 39 | generic-timing \
|
|---|
| 40 | tests-completed \
|
|---|
| 41 | per-prob-histo \
|
|---|
| 42 | per-prob-depth \
|
|---|
| 43 | }
|
|---|
| 44 |
|
|---|
| 45 | .PHONY : all rebuild-refs clean wc
|
|---|
| 46 |
|
|---|
| 47 | all : ${DOCUMENT}
|
|---|
| 48 |
|
|---|
| 49 | clean :
|
|---|
| 50 | @rm -fv ${BUILD}/*
|
|---|
| 51 |
|
|---|
| 52 | wc :
|
|---|
| 53 | wc ${SOURCES}
|
|---|
| 54 |
|
|---|
| 55 | ${DOCUMENT} : ${BASE}.ps
|
|---|
| 56 | ps2pdf ${BUILD}/$<
|
|---|
| 57 |
|
|---|
| 58 | ${BASE}.ps : ${BASE}.dvi
|
|---|
| 59 | dvips ${BUILD}/$< -o ${BUILD}/$@
|
|---|
| 60 |
|
|---|
| 61 | ${BASE}.dvi : Makefile ${SOURCES} ${GRAPHS} ${FIGURES} ${BIBFILE} ${BUILD}
|
|---|
| 62 | ${LATEX} ${BASE}
|
|---|
| 63 | ${BIBTEX} ${BUILD}/${BASE}
|
|---|
| 64 | ${LATEX} ${BASE}
|
|---|
| 65 | ${LATEX} ${BASE}
|
|---|
| 66 |
|
|---|
| 67 | generic-timing.tex : generic-timing.gp generic-timing.dat ${BUILD}
|
|---|
| 68 | gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/generic-timing.gp
|
|---|
| 69 |
|
|---|
| 70 | tests-completed.tex : algo-summary.gp algo-summary.dat bu-summary.dat ${BUILD}
|
|---|
| 71 | gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/algo-summary.gp
|
|---|
| 72 |
|
|---|
| 73 | per-prob-histo.tex : per-prob.gp per-prob.tsv ${BUILD}
|
|---|
| 74 | gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob.gp
|
|---|
| 75 |
|
|---|
| 76 | per-prob-depth.tex : per-prob-scatter.gp ${BUILD}
|
|---|
| 77 | gnuplot -e BUILD="'${BUILD}/'" ${EVALDIR}/per-prob-scatter.gp
|
|---|
| 78 |
|
|---|
| 79 | ${BUILD}:
|
|---|
| 80 | mkdir -p ${BUILD}
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.