Hi Miles,
I'm trying to do some infinite DMRG without symmetry. As a first attempt I'm calculating a transeverse field Ising model by defining
W = IQTensor(dag(sites(n)),prime(sites(n)),row,col);
W += sites.op("Id",n) * row(1) * col(1); //ending state
W += sites.op("Id",n) * row(2) * col(2); //starting state
W += sites.op("Sz",n) * row(3) * col(1);
W += sites.op("Sz",n) * row(2) * col(3);
W += sites.op("Sp",n) * row(2) * col(1) * hx;
W += sites.op("Sm",n) * row(2) * col(1) * hx;
But the result does not make sense with ground state energy / site = -196089.678
I think maybe the problem is with QN, which I define as 0 due to lack of symmetry. Is this the right way of doing this? Thanks very much!
Best,
Chengshu