Skip to content

Commit

Permalink
Merge #3312
Browse files Browse the repository at this point in the history
3312: wang_landau_reaction_ensemble.py: use np.transpose

Fix #3305
  • Loading branch information
jngrad authored Nov 20, 2019
2 parents 2b7157a + 491d3d3 commit a1938b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/python/wang_landau_reaction_ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ReactionEnsembleTest(ut.TestCase):
# generate preliminary_energy_run_results here, this should be done in a
# separate simulation without energy reweighting using the update energy
# functions
np.savetxt("energy_boundaries.dat", np.c_[[0, 1], [0, 0], [9, 9]],
np.savetxt("energy_boundaries.dat", np.transpose([[0, 1], [0, 0], [9, 9]]),
delimiter='\t', header="nbar E_potmin E_potmax")

WLRE.add_collective_variable_degree_of_association(
Expand Down

0 comments on commit a1938b8

Please sign in to comment.