From 8682ee1ff8fbf9da51e1a26359879fed4d839d15 Mon Sep 17 00:00:00 2001 From: jan Date: Mon, 11 Jul 2016 14:53:34 -0700 Subject: [PATCH] clean up comment --- opencl_fdfd/main.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/opencl_fdfd/main.py b/opencl_fdfd/main.py index b3dfc3f..716f403 100644 --- a/opencl_fdfd/main.py +++ b/opencl_fdfd/main.py @@ -19,8 +19,11 @@ def cg_solver(omega, dxes, J, epsilon, mu=None, pec=None, pmc=None, adjoint=Fals shape = [d.size for d in dxes[0]] ''' - ** In this comment, I use the notation M* = conj(M), - M.T = transpose(M), M' = ctranspose(M), M N = dot(M, N) + ** In this comment, I use the following notation: + M* = conj(M), + M.T = transpose(M), + M' = ctranspose(M), + M N = dot(M, N) This solver uses a symmetrized wave operator M = (L A R) = (L A R).T (where L = inv(R) are diagonal preconditioner matrices) when