Changeset 873e96c


Ignore:
Timestamp:
May 4, 2025, 10:05:17 PM (5 months ago)
Author:
Peter A. Buhr <pabuhr@…>
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)
Message:

formatting

Location:
doc/theses/mike_brooks_MMath
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/Makefile

    r969d7d3 r873e96c  
    1313TeXSRC = ${wildcard *.tex}
    1414PicSRC = ${notdir ${wildcard ${Pictures}/*.png}} ${notdir ${wildcard ${Pictures}/*.fig}}
    15 PicSRC := ${PicSRC:.fig=.pdf}           # substitute ".fig" with ".pdf"
     15PicSRC := ${PicSRC:.fig=.pdf}                   # substitute ".fig" with ".pdf"
    1616GraphSRC_OLD = ${notdir ${wildcard ${Pictures}/*.dat}}
    17 GraphSRC_OLD := ${GraphSRC_OLD:.dat=.pdf}               # substitute ".dat" with ".pdf"
     17GraphSRC_OLD := ${GraphSRC_OLD:.dat=.pdf}       # substitute ".dat" with ".pdf"
    1818PlotINPUTS = ${wildcard ${Plots}/*.gp} ${wildcard ${Plots}/*.py}
    1919PlotINPUTS := ${addsuffix .INPUTS,${PlotINPUTS}}
    2020PlotSRC = ${notdir ${wildcard ${Plots}/*.gp}}
    21 PlotSRC := ${addprefix ${Build}/plot-,${PlotSRC:.gp=.pdf}}              # substitute ".gp" with ".pdf"
     21PlotSRC := ${addprefix ${Build}/plot-,${PlotSRC:.gp=.pdf}} # substitute ".gp" with ".pdf"
    2222DemoPgmSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}}
    2323PgmSRC = ${notdir ${wildcard ${Programs}/*}}
     
    4949# Rules and Recipes
    5050
    51 .PHONY : all clean                      # not file names
     51.PHONY : all clean                              # not file names
    5252.SECONDARY:
    5353#.PRECIOUS : ${Build}/%                         # don't delete intermediates
     
    8282        ${CFA} $< -o $@
    8383
    84 ${Build}/%: ${Programs}/%.run.cfa | ${Build} # cfa cannot handle pipe
     84${Build}/%: ${Programs}/%.run.cfa | ${Build}    # cfa cannot handle pipe
    8585        sed -f ${Programs}/sedcmd $< > ${Build}/tmp.cfa; ${CFA} ${Build}/tmp.cfa -o $@
    8686
  • doc/theses/mike_brooks_MMath/background.tex

    r969d7d3 r873e96c  
    995995                Illustrated by pseudocode implementation of an STL-compatible API fragment using LQ as the underlying implementation.
    996996                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}.
    998998                When using a custom-patched version of LQ to work around this issue,
    999999                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.