X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fmoof%2Fcml%2Fmatrix.h;fp=src%2Fmoof%2Fcml%2Fmatrix.h;h=0000000000000000000000000000000000000000;hb=6b0a0d0efafe34d48ab344fca3b479553bd4e62c;hp=3573e38350640f53aba67c42b2671f7a4e7caa5a;hpb=85783316365181491a3e3c0c63659972477cebba;p=chaz%2Fyoink diff --git a/src/moof/cml/matrix.h b/src/moof/cml/matrix.h deleted file mode 100644 index 3573e38..0000000 --- a/src/moof/cml/matrix.h +++ /dev/null @@ -1,62 +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 - * - * The configurable matrix<> class. - */ - -#ifndef cml_matrix_h -#define cml_matrix_h - -#include - -namespace cml { - -/** A configurable matrix. - * - * This class encapsulates the notion of a matrix. The ArrayType template - * argument can be used to select the type of array to be used as internal - * storage for a 2D array of type Element. - * - * @internal Unlike the previous version, this uses specializations to better - * enable varied array and matrix types. For example, with the rebind method, - * it's difficult to support external<> matrix types that should not be - * assigned to. - * - * @internal All assignments to the matrix should go through UnrollAssignment, - * which ensures that the source expression and the destination matrix have - * the same size. This is particularly important for dynamically-sized - * matrices. - */ -template class matrix; - -} // namespace cml - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#endif - -// ------------------------------------------------------------------------- -// vim:ft=cpp