Page MenuHomec4science

types.hh
No OneTemporary

File Metadata

Created
Wed, Jul 10, 17:56

types.hh

/**
*
* @author Lucas Frérot <lucas.frerot@epfl.ch>
*
* @section LICENSE
*
* Copyright (©) 2016 EPFL (Ecole Polytechnique Fédérale de
* Lausanne) Laboratory (LSMS - Laboratoire de Simulation en Mécanique des
* Solides)
*
* Tamaas is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* Tamaas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Tamaas. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* -------------------------------------------------------------------------- */
#ifndef __TYPES_HH__
#define __TYPES_HH__
/* -------------------------------------------------------------------------- */
#include "tamaas.hh"
#include "grid.hh"
#include <cstddef>
/* -------------------------------------------------------------------------- */
__BEGIN_TAMAAS__
// Forward declarations
template <typename T> class MatrixProxy;
template <typename T>
class VectorProxy : public Grid<T, 1> {
public:
/// Wrap on memory
VectorProxy(T * mem, UInt n);
/// Destructor
virtual ~VectorProxy();
public:
/// Access
const T & operator()(UInt i) const;
/// Access (non-const)
T & operator()(UInt i);
/// Set pointer
void setPointer(T * ptr) {this->data.setPtr(ptr);}
/// Matrix-vector multiplication
void mul(const MatrixProxy<T> & mat, const VectorProxy<T> & vec);
/// Dot product
T dot(const VectorProxy<T> & vec);
};
/* -------------------------------------------------------------------------- */
template <typename T>
class MatrixProxy : public Grid<T, 2> {
public:
/// Wrap on memory
MatrixProxy(T * mem, UInt n, UInt m);
/// Destructor
virtual ~MatrixProxy();
public:
/// Access
const T & operator()(UInt i, UInt j) const;
/// Access (non-const)
T & operator()(UInt i, UInt j);
/// Set pointer
void setPointer(T * ptr) {this->data.setPtr(ptr);}
};
__END_TAMAAS__
#endif // __TYPES_HH__

Event Timeline