diff options
Diffstat (limited to 'src/partial_sim.c')
-rw-r--r-- | src/partial_sim.c | 2 |
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); } |