source: doc/theses/colby_parsons_MMAth/glossary.tex @ beabdf3

ADTast-experimental
Last change on this file since beabdf3 was 9a5a2cd, checked in by caparsons <caparson@…>, 15 months ago

Big cleanup pass. Updated style to get rid of almost all macros. Reformated thesis to match current template. Added newlines at the end of all sentences. Reworked terminology and acronyms to fit new glossary format

  • Property mode set to 100644
File size: 1.9 KB
Line 
1% % Main glossary entries -- definitions of relevant terminology
2% \newglossaryentry{computer}
3% {
4% name=computer,
5% description={A programmable machine that receives input data,
6%                stores and manipulates the data, and provides
7%                formatted output}
8% }
9
10% % Nomenclature glossary entries -- New definitions, or unusual terminology
11% \newglossary*{nomenclature}{Nomenclature}
12% \newglossaryentry{dingledorf}
13% {
14% type=nomenclature,
15% name=dingledorf,
16% description={A person of supposed average intelligence who makes incredibly brainless misjudgments}
17% }
18
19% % List of Abbreviations (abbreviations type is built in to the glossaries-extra package)
20% \newabbreviation{aaaaz}{AAAAZ}{American Association of Amateur Astronomers and Zoologists}
21
22% % List of Symbols
23% \newglossary*{symbols}{List of Symbols}
24% \newglossaryentry{rvec}
25% {
26% name={$\mathbf{v}$},
27% sort={label},
28% type=symbols,
29% description={Random vector: a location in n-dimensional Cartesian space, where each dimensional component is determined by a random process}
30% }
31
32% Examples from template above
33
34\newabbreviation{raii}{RAII}{Resource Acquisition Is Initialization}
35\newabbreviation{rtti}{RTTI}{Run-Time Type Information}
36\newabbreviation{fcfs}{FCFS}{First Come First Served}
37\newabbreviation{toctou}{TOCTOU}{time-of-check to time-of-use}
38
39\newglossaryentry{actor}
40{
41name=actor,
42description={A basic unit of an actor system that can store local state and send messages to other actors.}
43}
44
45\newglossaryentry{impl_concurrency}
46{
47name=implicit concurrency,
48description={A class of concurrency features that abstract away explicit thread synchronization and mutual exclusion.}
49}
50
51\newglossaryentry{actor_model}
52{
53name=actor model,
54description={A concurrent computation model, where tasks are broken into units of work that are distributed to actors in the form of messages.}
55}
56
57\newglossaryentry{actor_system}
58{
59name=actor system,
60description={An implementation of the actor model.}
61}
Note: See TracBrowser for help on using the repository browser.