Changeset 37e9c1d for doc/theses/mubeen_zulfiqar_MMath
- Timestamp:
- Apr 3, 2022, 8:29:57 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- 1a9592a
- Parents:
- 85f9c77
- Location:
- doc/theses/mubeen_zulfiqar_MMath
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/mubeen_zulfiqar_MMath/Makefile
r85f9c77 r37e9c1d 1 # directory for latex clutter files 1 # Configuration variables 2 2 3 Build = build 3 4 Figures = figures 4 5 Pictures = pictures 6 5 7 TeXSRC = ${wildcard *.tex} 6 8 FigSRC = ${notdir ${wildcard ${Figures}/*.fig}} 7 9 PicSRC = ${notdir ${wildcard ${Pictures}/*.fig}} 8 BIBSRC = ${wildcard *.bib} 9 TeXLIB = .:../../LaTeXmacros:${Build}: # common latex macros 10 BibLIB = .:../../bibliography # common citation repository 10 BibSRC = ${wildcard *.bib} 11 12 TeXLIB = .:../../LaTeXmacros:${Build}: # common latex macros 13 BibLIB = .:../../bibliography # common citation repository 11 14 12 15 MAKEFLAGS = --no-print-directory # --silent 13 16 VPATH = ${Build} ${Figures} ${Pictures} # extra search path for file names used in document 14 17 15 ### Special Rules: 18 DOCUMENT = uw-ethesis.pdf 19 BASE = ${basename ${DOCUMENT}} # remove suffix 16 20 17 .PHONY: all clean 18 .PRECIOUS: %.dvi %.ps # do not delete intermediate files 19 20 ### Commands: 21 # Commands 21 22 22 23 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build} 23 BibTeX = BIBINPUTS=${BibLIB} bibtex24 BibTeX = BIBINPUTS=${BibLIB} && export BIBINPUTS && bibtex 24 25 #Glossary = INDEXSTYLE=${Build} makeglossaries-lite 25 26 26 # ## Rules and Recipes:27 # Rules and Recipes 27 28 28 DOC = uw-ethesis.pdf 29 BASE = ${DOC:%.pdf=%} # remove suffix 29 .PHONY : all clean # not file names 30 .PRECIOUS: %.dvi %.ps # do not delete intermediate files 31 .ONESHELL : 30 32 31 all : ${DOC}33 all : ${DOCUMENT} 32 34 33 clean :34 @rm -frv ${DOC } ${Build}35 clean : 36 @rm -frv ${DOCUMENT} ${Build} 35 37 36 # File Dependencies #38 # File Dependencies 37 39 38 %.dvi : ${TeXSRC} ${FigSRC:%.fig=%.tex} ${PicSRC:%.fig=%.pstex} ${B IBSRC} Makefile | ${Build}40 %.dvi : ${TeXSRC} ${FigSRC:%.fig=%.tex} ${PicSRC:%.fig=%.pstex} ${BibSRC} Makefile | ${Build} 39 41 ${LaTeX} ${BASE} 40 42 ${BibTeX} ${Build}/${BASE} 41 43 ${LaTeX} ${BASE} 42 # if ne dded, run latex again to get citations44 # if needed, run latex again to get citations 43 45 if fgrep -s "LaTeX Warning: Citation" ${basename $@}.log ; then ${LaTeX} ${BASE} ; fi 44 46 # ${Glossary} ${Build}/${BASE} … … 46 48 47 49 ${Build}: 48 mkdir $@50 mkdir -p $@ 49 51 50 52 %.pdf : ${Build}/%.ps | ${Build} -
doc/theses/mubeen_zulfiqar_MMath/background.tex
r85f9c77 r37e9c1d 754 754 Finally, lock-free implementations have greater complexity and hardware dependency. 755 755 Lock-free algorithms can be applied most easily to simple free-lists, \eg remote free-list, to allow lock-free insertion and removal from the head of a stack. 756 Implementing lock-free operations for more complex data-structures (queue~\cite{Valois94}/deque~\cite{Sundell08}) is correspondingly ymore complex.756 Implementing lock-free operations for more complex data-structures (queue~\cite{Valois94}/deque~\cite{Sundell08}) is correspondingly more complex. 757 757 Michael~\cite{Michael04} and Gidenstam \etal \cite{Gidenstam05} have created lock-free variations of the Hoard allocator. -
doc/theses/mubeen_zulfiqar_MMath/uw-ethesis.tex
r85f9c77 r37e9c1d 60 60 % For hyperlinked PDF, suitable for viewing on a computer, use this: 61 61 \documentclass[letterpaper,12pt,titlepage,oneside,final]{book} 62 \usepackage[T1]{fontenc} % Latin-1 => 256-bit characters, => | not dash, <> not Spanish question marks 62 63 63 64 % For PDF, suitable for double-sided printing, change the PrintVersion variable below to "true" and use this \documentclass line instead of the one above: … … 171 172 \input{common} 172 173 %\usepackageinput{common} 173 \CFAStyle % CFA code-style for all languages 174 \CFAStyle % CFA code-style 175 \lstset{language=CFA} % default language 174 176 \lstset{basicstyle=\linespread{0.9}\sf} % CFA typewriter font 175 177 \newcommand{\uC}{$\mu$\CC}
Note: See TracChangeset
for help on using the changeset viewer.