Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit d9851411 authored by ulrich_y's avatar ulrich_y
Browse files

Follow-up to 69396210 ignored lower bounds of histogram

parent 4e65c31f
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,10 @@ def importvegas(filename="", fp=None, inttype='i'):
for i in range(nrq):
if len(names[i]) == 0:
continue
x = ouarray(np.inf, -np.inf, delta[i]*(0.5+np.arange(nrbins)))
x = ouarray(
np.inf, -np.inf,
bounds[0,i] + delta[i]*(0.5+np.arange(nrbins))
)
y = quant[i:nrq*nrbinsuo:nrq] \
/ it / ouarray(1, 1, [delta[i]]*nrbins)
e = np.sqrt(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment