]> Dogcows Code - chaz/yoink/blobdiff - src/cml/matrix/matrix_ops.h
extreme refactoring
[chaz/yoink] / src / cml / matrix / matrix_ops.h
diff --git a/src/cml/matrix/matrix_ops.h b/src/cml/matrix/matrix_ops.h
deleted file mode 100644 (file)
index 8188f87..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/* -*- C++ -*- ------------------------------------------------------------
-Copyright (c) 2007 Jesse Anders and Demian Nave http://cmldev.net/
-
-The Configurable Math Library (CML) is distributed under the terms of the
-Boost Software License, v1.0 (see cml/LICENSE for details).
-
- *-----------------------------------------------------------------------*/
-/** @file
- *  @brief Defines matrix operators.
- */
-#ifndef matrix_ops_h
-#define matrix_ops_h
-
-#include <cml/et/scalar_ops.h>
-#include <cml/matrix/matrix_expr.h>
-#include <cml/matrix/matop_macros.h>
-
-namespace cml {
-
-CML_MAT_UNIOP(    operator+, et::OpPos)
-CML_MATXPR_UNIOP( operator+, et::OpPos)
-
-CML_MAT_UNIOP(    operator-, et::OpNeg)
-CML_MATXPR_UNIOP( operator-, et::OpNeg)
-
-CML_MAT_MAT_BINOP(       operator+, et::OpAdd)
-CML_MATXPR_MAT_BINOP(    operator+, et::OpAdd)
-CML_MAT_MATXPR_BINOP(    operator+, et::OpAdd)
-CML_MATXPR_MATXPR_BINOP( operator+, et::OpAdd)
-
-CML_MAT_MAT_BINOP(       operator-, et::OpSub)
-CML_MATXPR_MAT_BINOP(    operator-, et::OpSub)
-CML_MAT_MATXPR_BINOP(    operator-, et::OpSub)
-CML_MATXPR_MATXPR_BINOP( operator-, et::OpSub)
-
-CML_MAT_SCALAR_BINOP(    operator*, et::OpMul)
-CML_SCALAR_MAT_BINOP(    operator*, et::OpMul)
-CML_MATXPR_SCALAR_BINOP( operator*, et::OpMul)
-CML_SCALAR_MATXPR_BINOP( operator*, et::OpMul)
-
-CML_MAT_SCALAR_BINOP(    operator/, et::OpDiv)
-CML_MATXPR_SCALAR_BINOP( operator/, et::OpDiv)
-
-} // namespace cml
-
-#endif
-
-// -------------------------------------------------------------------------
-// vim:ft=cpp
This page took 0.020857 seconds and 4 git commands to generate.