From 0e1b013af77442311cd3708ec4bdbedb197a28e2 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Fri, 14 Mar 2003 04:36:57 +0000 Subject: "" svn path=/trunk/; revision=468 --- externals/grill/vasp/source/ops_carith.h | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) (limited to 'externals/grill/vasp/source/ops_carith.h') diff --git a/externals/grill/vasp/source/ops_carith.h b/externals/grill/vasp/source/ops_carith.h index 3910c0ad..0b049fb4 100644 --- a/externals/grill/vasp/source/ops_carith.h +++ b/externals/grill/vasp/source/ops_carith.h @@ -11,22 +11,23 @@ WARRANTIES, see the file, "license.txt," in this distribution. #ifndef __VASP_OPS_CARITH_H #define __VASP_OPS_CARITH_H -#include "opbase.h" +#include "opfuns.h" // Arithmetic math functions namespace VecOp { - BL d_cadd(OpParam &p); - BL d_csub(OpParam &p); - BL d_csubr(OpParam &p); - BL d_cmul(OpParam &p); - BL d_cdiv(OpParam &p); - BL d_cdivr(OpParam &p); - - BL d_csqr(OpParam &p); - BL d_cpowi(OpParam &p); - - BL d_cabs(OpParam &p); + inline BL d_cadd(OpParam &p) { return D__cbin >(p); } + inline BL d_csub(OpParam &p) { return D__cbin >(p); } + inline BL d_csubr(OpParam &p) { return D__cbin >(p); } + inline BL d_cmul(OpParam &p) { return D__cbin >(p); } + inline BL d_cdiv(OpParam &p) { return d__cbin >(p); } + inline BL d_cdivr(OpParam &p) { return d__cbin >(p); } + + inline BL d_csqr(OpParam &p) { return D__cun >(p); } + + inline BL d_cpowi(OpParam &p) { return d__cop >(p); } + + inline BL d_cabs(OpParam &p) { return D__cun >(p); } } namespace VaspOp { -- cgit v1.2.1