-
Notifications
You must be signed in to change notification settings - Fork 33
/
davidson.h
46 lines (38 loc) · 1.2 KB
/
davidson.h
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
Developed by Sandeep Sharma and Garnet K.-L. Chan, 2012
Copyright (c) 2012, Garnet K.-L. Chan
This program is integrated in Molpro with the permission of
Sandeep Sharma and Garnet K.-L. Chan
*/
#ifndef SPIN_DAVIDSON_HEADER
#define SPIN_DAVIDSON_HEADER
#include "wavefunction.h"
#include "spinblock.h"
namespace SpinAdapted{
struct Davidson_functor
{
virtual void operator()(Wavefunction& c, Wavefunction& v) = 0;
virtual const SpinBlock& get_block() = 0;
};
class multiply_h : public Davidson_functor
{
private:
const SpinBlock& block;
public:
multiply_h(const SpinBlock& b, const bool &onedot_);
void operator()(Wavefunction& c, Wavefunction& v);
const SpinBlock& get_block() {return block;}
};
//H-E
class multiply_h_e : public Davidson_functor
{
private:
const SpinBlock& block;
double E0;
public:
multiply_h_e(const SpinBlock& b, const bool &onedot_, double E0);
void operator()(Wavefunction& c, Wavefunction& v);
const SpinBlock& get_block() {return block;}
};
}
#endif