Give spheres positive radii in examples

This changes the meaning of `indep_val` in the overlapping pyramids
example, so we adjust `indep_val` to get a nice-looking construction.
This commit is contained in:
Aaron Fenyes 2024-07-17 17:22:33 -07:00
parent 2038103d80
commit 4728959ae0
3 changed files with 8 additions and 14 deletions

View file

@ -28,7 +28,7 @@ for j in 1:6
push!(values, -1/BigFloat(3))
filled = true
else
push!(values, -1)
push!(values, 1)
filled = true
end
if filled
@ -46,8 +46,8 @@ guess = hcat(
1 1 -1 -1 0
1 -1 1 -1 0
1 -1 -1 1 0
0 0 0 0 -1.5
1 1 1 1 -0.5
0 0 0 0 1.5
1 1 1 1 0.5
] + 0.2*Engine.rand_on_shell(fill(BigFloat(-1), 5)),
BigFloat[0, 0, 0, 0, 1]
)