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 66b6af99 authored by ulrich_y's avatar ulrich_y
Browse files

In #17 round x values of histograms to 10 decimals

parent a6e5fc83
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,10 @@ def importvegas(filename="", fp=None, inttype='i'):
continue
x = ouarray(
np.inf, -np.inf,
bounds[0,i] + delta[i]*(0.5+np.arange(nrbins))
np.around(
bounds[0,i] + delta[i]*(0.5+np.arange(nrbins)),
10
)
)
y = quant[i:nrq*nrbinsuo:nrq] \
/ it / ouarray(1, 1, [delta[i]]*nrbins)
......
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