mirror of https://github.com/phonopy/phono3py.git
11 lines
384 B
C
11 lines
384 B
C
#ifndef __test_utils_H__
|
|
#define __test_utils_H__
|
|
|
|
void lagmat_multiply_matrix_vector_l3(long v[3], const long a[3][3],
|
|
const long b[3]);
|
|
void lagmat_multiply_matrix_l3(long m[3][3], const long a[3][3],
|
|
const long b[3][3]);
|
|
void lagmat_copy_matrix_l3(long a[3][3], const long b[3][3]);
|
|
|
|
#endif // __test_utils_H__
|