forked from masayoshi-ogura/HDNNP-LAMMPS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsymmetry_function.h
More file actions
29 lines (22 loc) · 820 Bytes
/
symmetry_function.h
File metadata and controls
29 lines (22 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// Created by Masayoshi Ogura on 2018/06/29.
//
#ifndef HDNNP_LAMMPS_SYMMETRY_FUNCTION_H
#define HDNNP_LAMMPS_SYMMETRY_FUNCTION_H
#define INCLUDED_NNP_H_
#define EIGEN_USE_MKL_ALL
#define EIGEN_NO_DEBUG
#define EIGEN_MPL2_ONLY
#include <Eigen/Core>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
using namespace Eigen;
void G1(vector<double>, int, vector<int>, int, VectorXd &, VectorXd *,
VectorXd &, MatrixXd &, MatrixXd &, MatrixXd &);
void G2(vector<double>, int, vector<int>, int, VectorXd &, VectorXd *,
VectorXd &, MatrixXd &, MatrixXd &, MatrixXd &);
void G4(vector<double>, int, vector<vector<int> >, int, VectorXd &, MatrixXd &,
VectorXd *, MatrixXd *, VectorXd &, MatrixXd &, MatrixXd &, MatrixXd &);
#endif // HDNNP_LAMMPS_SYMMETRY_FUNCTION_H