Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104768164
types.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Mar 12, 05:52
Size
2 KB
Mime Type
text/x-c++
Expires
Fri, Mar 14, 05:52 (1 d, 16 h)
Engine
blob
Format
Raw Data
Handle
24857272
Attached To
rTAMAAS tamaas
types.hh
View Options
/**
*
* @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
Log In to Comment