Skip to content
Snippets Groups Projects
Commit 405790f7 authored by mkirsz's avatar mkirsz
Browse files

No longe needed

parent aabf7039
No related branches found
No related tags found
Loading
#ifndef M_BASE_H
#define M_BASE_H
#include "../LIBS/Eigen/Dense"
#include "../CORE/typedefs.h"
#include "functions/function_base.h"
class M_Base {
public:
//Normaliser norm; // TODO?
virtual ~M_Base() {};
//
// /** \brief Predict local energy of an atom or bond energy.
// *
// * The result depends on how aed is computed.
// *
// * If it is computed between a pair of atoms than the result is a bond energy.
// *
// * If aed contains sum over all nearest neighbours than the result is
// * a local atomic energy \f$ E_i \f$.
// * */
// virtual double epredict(const aed_rctype &aed)=0;
//
// /** \brief Predict force between a pair of atoms in a k-direction. */
// virtual double fpredict(const fd_type &fdij, const aed_rctype &aedi, size_t k)=0;
//
// /** \brief Predict force between a pair of atoms. */
// virtual force_type fpredict(const fd_type &fdij,
// const aed_rctype &aedi)=0;
};
//template<> inline Registry<M_Base,Function_Base&,Config&>::Map Registry<M_Base,Function_Base&,Config&>::registry{};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment