mirror of
https://github.com/triqs/dft_tools
synced 2024-12-26 22:33:48 +01:00
10 lines
214 B
C++
10 lines
214 B
C++
|
#include <triqs/gfs.hpp>
|
||
|
using namespace triqs::gfs;
|
||
|
|
||
|
int main() {
|
||
|
double beta = 10; // the time interval
|
||
|
int n_times = 100; // we will have 100
|
||
|
auto g = gf<imtime, scalar_valued>{{beta, Fermion, n_times}};
|
||
|
}
|
||
|
|