diff options
| -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) |
