Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91041046
MatrixLibrary.h
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
Thu, Nov 7, 05:30
Size
591 B
Mime Type
text/x-c
Expires
Sat, Nov 9, 05:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22161730
Attached To
rLAMMPS lammps
MatrixLibrary.h
View Options
#ifndef MATRIXLIBRARY_H
#define MATRIXLIBRARY_H
#include "DenseMatrix.h"
#include "DenseVector.h"
#include "CloneVector.h"
#include "DiagonalMatrix.h"
#include "SparseMatrix.h"
#include "SparseVector.h"
template
<
typename
T
>
const
SparseMatrix
<
T
>
*
sparse_cast
(
const
Matrix
<
T
>
*
m
)
{
return
dynamic_cast
<
const
SparseMatrix
<
T
>*>
(
m
);
}
template
<
typename
T
>
void
copy_sparse_to_matrix
(
const
SparseMatrix
<
T
>
*
s
,
Matrix
<
T
>
&
m
)
{
m
.
zero
();
TRIPLET
<
T
>
triplet
;
for
(
INDEX
i
=
0
;
i
<
s
->
size
();
i
++
)
{
triplet
=
s
->
get_triplet
(
i
);
m
(
triplet
.
i
,
triplet
.
j
)
=
triplet
.
v
;
}
}
#endif
Event Timeline
Log In to Comment