mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
17 lines
371 B
C++
17 lines
371 B
C++
|
#include <triqs/gfs.hpp>
|
||
|
using namespace triqs::gfs;
|
||
|
using triqs::clef::placeholder;
|
||
|
int main() {
|
||
|
|
||
|
// Cf gf<imfreq> specialisation page for the constructor
|
||
|
double beta = 10;
|
||
|
int Nfreq = 100;
|
||
|
auto g = gf<imfreq>{{beta, Fermion, Nfreq}, {1, 1}};
|
||
|
|
||
|
// Filling the gf with something...
|
||
|
placeholder<0> wn_;
|
||
|
g(wn_) << 1 / (wn_ + 2);
|
||
|
g(wn_) << 1 / (wn_ + 2 + g(wn_));
|
||
|
}
|
||
|
|