Correct scope of guess constants
This commit is contained in:
parent
b24dcc9af8
commit
33c09917d0
@ -207,8 +207,8 @@ end
|
|||||||
|
|
||||||
# ~~~ sandbox setup ~~~
|
# ~~~ sandbox setup ~~~
|
||||||
|
|
||||||
elements = begin
|
elements = let
|
||||||
const a = sqrt(BigFloat(3)/2)
|
a = sqrt(BigFloat(3)/2)
|
||||||
sqrt(0.5) * BigFloat[
|
sqrt(0.5) * BigFloat[
|
||||||
1 1 -1 -1 0
|
1 1 -1 -1 0
|
||||||
1 -1 1 -1 0
|
1 -1 1 -1 0
|
||||||
|
@ -36,8 +36,8 @@ gram[1, 6] = gram[6, 1]
|
|||||||
# in this initial guess, the mutual tangency condition is satisfied for spheres
|
# in this initial guess, the mutual tangency condition is satisfied for spheres
|
||||||
# 1 through 5
|
# 1 through 5
|
||||||
Random.seed!(50793)
|
Random.seed!(50793)
|
||||||
guess = begin
|
guess = let
|
||||||
const a = sqrt(BigFloat(3)/2)
|
a = sqrt(BigFloat(3)/2)
|
||||||
hcat(
|
hcat(
|
||||||
sqrt(1/BigFloat(2)) * BigFloat[
|
sqrt(1/BigFloat(2)) * BigFloat[
|
||||||
1 1 -1 -1 0
|
1 1 -1 -1 0
|
||||||
|
Loading…
Reference in New Issue
Block a user