We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7ba250 commit dfd9e7aCopy full SHA for dfd9e7a
2 files changed
src/bell_frank_wolfe.jl
@@ -40,7 +40,7 @@ function bell_frank_wolfe(
40
v0 = one(T),
41
epsilon = 10Base.rtoldefault(T),
42
verbose = 0,
43
- verbose_init = verbose > 0,
+ verbose_init = verbose > 0, # when used in nonlocality_threshold
44
shr2 = NaN,
45
mode::Int = 0,
46
nb::Int = 10^2,
src/nonlocality_threshold.jl
@@ -22,7 +22,6 @@ function nonlocality_threshold(
22
digits = 3,
23
prob::Bool = false,
24
marg::Bool = false,
25
- epsilon = Base.rtoldefault(T),
26
o = nothing,
27
sym = nothing,
28
deflate = identity,
@@ -44,7 +43,6 @@ function nonlocality_threshold(
while round(log10(upper_bound - lower_bound); digits = 4) > -digits
res = bell_frank_wolfe(p;
v0,
47
- epsilon,
48
prob,
49
marg,
50
o,
0 commit comments