aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/vasp/source/ops_cplx.h
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-03-14 04:36:57 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-03-14 04:36:57 +0000
commit0e1b013af77442311cd3708ec4bdbedb197a28e2 (patch)
treeb78bdeb16ac023ce8cbff7f8319762eb29827729 /externals/grill/vasp/source/ops_cplx.h
parentaee82b636f867865ba00cb25d2a021f9f4e2aab4 (diff)
""
svn path=/trunk/; revision=468
Diffstat (limited to 'externals/grill/vasp/source/ops_cplx.h')
-rw-r--r--externals/grill/vasp/source/ops_cplx.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/externals/grill/vasp/source/ops_cplx.h b/externals/grill/vasp/source/ops_cplx.h
index b3aaa4c6..c77de675 100644
--- a/externals/grill/vasp/source/ops_cplx.h
+++ b/externals/grill/vasp/source/ops_cplx.h
@@ -11,20 +11,19 @@ WARRANTIES, see the file, "license.txt," in this distribution.
#ifndef __VASP_OPS_CPLX_H
#define __VASP_OPS_CPLX_H
-#include "opbase.h"
+#include "opfuns.h"
// Complex functions
namespace VecOp {
- BL d_polar(OpParam &p);
- BL d_rect(OpParam &p);
+ inline BL d_polar(OpParam &p) { return d__cun<S,f_polar<S> >(p); }
+ inline BL d_rect(OpParam &p) { return d__cun<S,f_rect<S> >(p); }
- BL d_radd(OpParam &p);
+ inline BL d_radd(OpParam &p) { return d__cbin<S,f_radd<S> >(p); }
- BL d_cnorm(OpParam &p);
+ inline BL d_cnorm(OpParam &p) { return d__cun<S,f_norm<S> >(p); }
-// BL d_cswap(OpParam &p);
- BL d_cconj(OpParam &p);
+ inline BL d_cconj(OpParam &p) { return D__cun<S,f_conj<S> >(p); }
}
namespace VaspOp {