Browse Subversion Repository
Diff of /Conograph/trunk/src/utility_data_structure/SymMat.hh
Parent Directory
| Revision Log
| Patch
| 27 |
#ifndef SYMMAT_H_ |
#ifndef SYMMAT_H_ |
| 28 |
#define SYMMAT_H_ |
#define SYMMAT_H_ |
| 29 |
|
|
| 30 |
#include<assert.h> |
#include <assert.h> |
| 31 |
#include"../utility_data_structure/nrutil_nr.hh" |
#include "../utility_data_structure/nrutil_nr.hh" |
| 32 |
|
|
| 33 |
using namespace std; |
using namespace std; |
| 34 |
|
|
| 35 |
// Class of a symmmetric matrix (a_ij) determined by m_mat as below. |
// Class of a symmmetric matrix (a_ij) determined by m_mat as below. |
| 36 |
// m_mat[0] m_mat[1] m_mat[2] |
// m_mat[0] m_mat[1] m_mat[2] |
| 37 |
// (a_ij) = m_mat[1] m_mat[3] m_mat[4] for each 0<=i<=2, 0<=j<=2 |
// (a_ij) = m_mat[1] m_mat[3] m_mat[4] |
| 38 |
// m_mat[2] m_mat[4] m_mat[5] |
// m_mat[2] m_mat[4] m_mat[5] |
| 39 |
template <class T> |
template <class T> |
| 40 |
class SymMat |
class SymMat |
|
|
Legend:
| Removed from v.3 |
|
| changed lines |
| |
Added in v.25 |
|
|
|