Skip to content

Commit 43549d4

Browse files
authored
Merge pull request #56 from numericalEFT/bugfix-xc
minor bug fix
2 parents ce618e7 + 45bb12a commit 43549d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vegas_mc/updates.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function changeVariable(config::Configuration{N,V,P,O,T}, integrand, inplace,
6767
if inplace
6868
(fieldcount(V) == 1) ?
6969
integrand(config.var[1], _weights, config) :
70-
integrand(config.var, config)
70+
integrand(config.var, _weights, config)
7171
else
7272
_weights = (fieldcount(V) == 1) ?
7373
integrand(config.var[1], config) :

0 commit comments

Comments
 (0)