-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy path.typos.toml
More file actions
143 lines (131 loc) · 3.09 KB
/
Copy path.typos.toml
File metadata and controls
143 lines (131 loc) · 3.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[default.extend-words]
# Julia-specific functions
indexin = "indexin"
findfirst = "findfirst"
findlast = "findlast"
eachindex = "eachindex"
setp = "setp"
getp = "getp"
setu = "setu"
getu = "getu"
# Mathematical/scientific terms
jacobian = "jacobian"
hessian = "hessian"
eigenvalue = "eigenvalue"
eigenvector = "eigenvector"
discretization = "discretization"
linearization = "linearization"
parameterized = "parameterized"
discretized = "discretized"
vectorized = "vectorized"
extrapolant = "extrapolant"
# Person names in citations - these are correct spellings
Sigal = "Sigal" # Sigal Gottlieb is a real person/author
Steinebach = "Steinebach"
Protopapa = "Protopapa"
Hairer = "Hairer"
Wanner = "Wanner"
Verwer = "Verwer"
Sandu = "Sandu"
Carmichael = "Carmichael"
Potra = "Potra"
Seinfeld = "Seinfeld"
Dabdub = "Dabdub"
Marzo = "Marzo"
Loon = "Loon"
RODASP = "RODASP"
Rodas4P = "Rodas4P"
Rodas5P = "Rodas5P"
Rodas6P = "Rodas6P"
Scholz = "Scholz"
Veldhuizen = "Veldhuizen"
Tsit5DA = "Tsit5DA"
Kaps = "Kaps"
Rentrop = "Rentrop"
Rang = "Rang"
Darmstadt = "Darmstadt"
"Méthodes" = "Méthodes"
"différentiels" = "différentiels"
"algébriques" = "algébriques"
"problèmes" = "problèmes"
problemes = "problemes" # French word in citation without accent
Ono = "Ono" # Hiroshi Ono, author of Ono10/Ono12 RK methods
padd = "padd" # variable name in analyticless_convergence_tests.jl
Preprint = "Preprint"
Nr = "Nr"
Wouver = "Wouver"
Sauces = "Sauces"
Schiesser = "Schiesser"
Vande = "Vande"
BIT = "BIT"
Numer = "Numer"
Jcon = "Jcon"
arXiv = "arXiv"
# (Numer already declared above for "BIT Numer" context.)
# Technical variable names
dorder = "dorder" # Parameter for delta order / order change
# Common variable patterns in Julia/SciML
ists = "ists"
ispcs = "ispcs"
osys = "osys"
rsys = "rsys"
usys = "usys"
fsys = "fsys"
eqs = "eqs"
rhs = "rhs"
lhs = "lhs"
ode = "ode"
pde = "pde"
sde = "sde"
dde = "dde"
bvp = "bvp"
ivp = "ivp"
# Common abbreviations
tol = "tol"
rtol = "rtol"
atol = "atol"
idx = "idx"
jdx = "jdx"
prev = "prev"
curr = "curr"
init = "init"
tmp = "tmp"
vec = "vec"
arr = "arr"
dt = "dt"
du = "du"
dx = "dx"
dy = "dy"
dz = "dz"
# Algorithm/type suffixes
alg = "alg"
prob = "prob"
sol = "sol"
cb = "cb"
opts = "opts"
args = "args"
kwargs = "kwargs"
# Scientific abbreviations
ND = "ND"
nd = "nd"
MTK = "MTK"
ODE = "ODE"
PDE = "PDE"
SDE = "SDE"
# SDE-specific terms
IIF = "IIF" # Integrating Factor method (IIF1M, IIF2M, IIF1Mil)
iif = "iif"
currate = "currate" # current rate variable in tau-leaping
SIE = "SIE" # SIEA/SIEB algorithm name prefix
SME = "SME" # SME algorithm name (Stochastic Modified Euler)
resetted = "resetted" # variable name in stepsize control
strat = "strat" # Stratonovich abbreviation
# Variable names used in codebase
yhat = "yhat" # estimated y value
accpt = "accpt" # accepted step flag variable
gam = "gam" # gamma abbreviation in tableaux
clos = "clos" # closure abbreviation
# Journal abbreviations in BibTeX citations
Comput = "Comput" # J. Comput. Phys. (Journal of Computational Physics)
# Julia spelling convention
inferrable = "inferrable" # Julia uses "inferrable" not "inferable"