diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-19 11:07:30 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-19 11:07:30 +0200 |
| commit | 369d2ce6b070a995b8e127505c8d7b1646acd31d (patch) | |
| tree | a46cbd71e44a80e8064646b57fa7e777e85c3b01 | |
| parent | 2d739e85a8bc888ae012ecbc6327c467ec19756c (diff) | |
dont print so much
| -rw-r--r-- | test-mogrify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-mogrify.py b/test-mogrify.py index 50c011b..4643011 100644 --- a/test-mogrify.py +++ b/test-mogrify.py @@ -209,7 +209,7 @@ if __name__ == '__main__': frac_a = data_opt.recursive_frac * (1.0 - t) frac_b = data_opt.sequence_frac * (1.0 - t) frac_c = 1.0 - frac_a - frac_b - print("{}: {}".format(i, t)) + # print("{}: {}".format(i, t)) array_a = np.multiply(last_im.astype('float64'), frac_a) array_b = np.multiply(A_im.astype('float64'), frac_b) array_c = np.multiply(im.astype('float64'), frac_c) |
