aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-05-10 16:09:14 +0200
committerThomas White <taw@physics.org>2012-02-22 15:27:25 +0100
commit7db4a50c719ed3775e88390391ef2e657a28b3b3 (patch)
treea2d6b76b3aaebdc29a973e122070cf37c05c287f /src
parent9775637ff55ba497168d4778e2c1d8ca4b6f481a (diff)
partial_sim: Show the correct answer
Diffstat (limited to 'src')
-rw-r--r--src/partial_sim.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/partial_sim.c b/src/partial_sim.c
index a412330c..e83c4521 100644
--- a/src/partial_sim.c
+++ b/src/partial_sim.c
@@ -39,7 +39,9 @@ static void mess_up_cell(UnitCell *cell)
double cx, cy, cz;
cell_get_reciprocal(cell, &ax, &ay, &az, &bx, &by, &bz, &cx, &cy, &cz);
+ STATUS("The correct ax* is %e\n", ax);
ax += 0.05*ax;
+ STATUS("The starting ax* is %e\n", ax);
cell_set_reciprocal(cell, ax, ay, az, bx, by, bz, cx, cy, cz);
}