Skip to content

Commit

Permalink
CI: windows build: remove non-ASCII chars from src/semivar/define_cxx…
Browse files Browse the repository at this point in the history
…gen_extmods.py to appease Windows
  • Loading branch information
WarrenWeckesser committed Sep 7, 2023
1 parent 0f82d4f commit 52cf439
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/semivar/define_cxxgen_extmods.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Exponential semivariogram:
γ(h) = N + (S - N)*(1 - exp(-3*h/R))
g(h) = N + (S - N)*(1 - exp(-3*h/R))
where N is the nugget, S is the sill and R is the range.
Expand Down Expand Up @@ -37,8 +37,8 @@
Linear semivariogram:
γ(h) = N + ((S - N)/R)*h for h < R
γ(h) = S for h >= R
g(h) = N + ((S - N)/R)*h for h < R
g(h) = S for h >= R
where N is the nugget, S is the sill and R is the range.
Expand Down Expand Up @@ -67,10 +67,10 @@
Spherical semivariogram:
γ(h) = N + (S - N)*(ρ/2)*(3 - ρ**2) for h < R
γ(h) = S for h >= R
g(h) = N + (S - N)*(r/2)*(3 - r**2) for h < R
g(h) = S for h >= R
where ρ = h/range, N is the nugget, S is the sill and R is the range.
where r = h/range, N is the nugget, S is the sill and R is the range.
Parameters
----------
Expand Down

0 comments on commit 52cf439

Please sign in to comment.