Changeset 873e96c for doc/theses/mike_brooks_MMath
- Timestamp:
- May 4, 2025, 10:05:17 PM (5 months ago)
- Branches:
- master
- Children:
- 411aa65
- Parents:
- 969d7d3
- git-author:
- Peter A. Buhr <pabuhr@…> (05/04/25 22:04:19)
- git-committer:
- Peter A. Buhr <pabuhr@…> (05/04/25 22:05:17)
- Location:
- doc/theses/mike_brooks_MMath
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/mike_brooks_MMath/Makefile
r969d7d3 r873e96c 13 13 TeXSRC = ${wildcard *.tex} 14 14 PicSRC = ${notdir ${wildcard ${Pictures}/*.png}} ${notdir ${wildcard ${Pictures}/*.fig}} 15 PicSRC := ${PicSRC:.fig=.pdf} # substitute ".fig" with ".pdf"15 PicSRC := ${PicSRC:.fig=.pdf} # substitute ".fig" with ".pdf" 16 16 GraphSRC_OLD = ${notdir ${wildcard ${Pictures}/*.dat}} 17 GraphSRC_OLD := ${GraphSRC_OLD:.dat=.pdf} 17 GraphSRC_OLD := ${GraphSRC_OLD:.dat=.pdf} # substitute ".dat" with ".pdf" 18 18 PlotINPUTS = ${wildcard ${Plots}/*.gp} ${wildcard ${Plots}/*.py} 19 19 PlotINPUTS := ${addsuffix .INPUTS,${PlotINPUTS}} 20 20 PlotSRC = ${notdir ${wildcard ${Plots}/*.gp}} 21 PlotSRC := ${addprefix ${Build}/plot-,${PlotSRC:.gp=.pdf}} 21 PlotSRC := ${addprefix ${Build}/plot-,${PlotSRC:.gp=.pdf}} # substitute ".gp" with ".pdf" 22 22 DemoPgmSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}} 23 23 PgmSRC = ${notdir ${wildcard ${Programs}/*}} … … 49 49 # Rules and Recipes 50 50 51 .PHONY : all clean # not file names51 .PHONY : all clean # not file names 52 52 .SECONDARY: 53 53 #.PRECIOUS : ${Build}/% # don't delete intermediates … … 82 82 ${CFA} $< -o $@ 83 83 84 ${Build}/%: ${Programs}/%.run.cfa | ${Build} 84 ${Build}/%: ${Programs}/%.run.cfa | ${Build} # cfa cannot handle pipe 85 85 sed -f ${Programs}/sedcmd $< > ${Build}/tmp.cfa; ${CFA} ${Build}/tmp.cfa -o $@ 86 86 -
doc/theses/mike_brooks_MMath/background.tex
r969d7d3 r873e96c 995 995 Illustrated by pseudocode implementation of an STL-compatible API fragment using LQ as the underlying implementation. 996 996 The gap that makes it pseudocode is that 997 the LQ C macros do not expand to valid C++when instantiated with template parameters---there is no \lstinline{struct El}.997 the LQ C macros do not expand to valid \CC when instantiated with template parameters---there is no \lstinline{struct El}. 998 998 When using a custom-patched version of LQ to work around this issue, 999 999 the programs of \VRef[Figure]{f:WrappedRef} and wrapped value work with this shim in place of real STL.
Note:
See TracChangeset
for help on using the changeset viewer.