summaryrefslogtreecommitdiffstats
path: root/hawkes/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'hawkes/main.py')
-rw-r--r--hawkes/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/hawkes/main.py b/hawkes/main.py
index cddc85b..40993a1 100644
--- a/hawkes/main.py
+++ b/hawkes/main.py
@@ -110,8 +110,8 @@ def optimize_with_gss(x, y, z, niter=100):
return ll(x, y, z)
for _ in xrange(niter):
- y, fc = gss(g, 0, 1, tol=1e-10)
- z, fc = gss(h, 0, 1, tol=1e-10)
+ y, fc = gss(g, 0, 100, tol=1e-10)
+ z, fc = gss(h, 0, 100, tol=1e-10)
x, fc = gss(f, 0, 1e-3, tol=1e-10)
print x, y, z, fc
sys.stdout.flush()