realroot_doc 0.1.1
/Users/mourrain/Devel/mmx/realroot/include/realroot/texp_double.hpp
Go to the documentation of this file.
00001 namespace mmx {
00002 
00003   namespace texp {
00004     inline void add(double& a, double b, double c) { a=b+c;}
00005     inline void sub(double& a, double b, double c) { a=b-c;}
00006     inline void mul(double& a, double b, double c) { a=b*c;}
00007     inline void div(double& a, double b, double c) { a=b/c;}
00008   }
00009 }