#include <utility>
#include <string>
#include <iostream>
#include <vector>
#include <stdlib.h>
#include <inttypes.h>
#include "../Utility/types.h"
#include "../Utility/misc.h"
#include <boost/shared_ptr.hpp>
Go to the source code of this file.
Classes | |
class | Basis |
class | LatticeShape |
Typedefs | |
typedef boost::shared_ptr< Basis > | BasisPointer |
typedef std::vector< Basis > | Neighbors |
Functions | |
double | distance (Basis &b1, Basis &b2) |
void | printNeighbors (Neighbors &neighbors) |
void | getLatticeIndex (LatticeShape &lattice, Basis &basis, int &site1, int &site2) |
void | generateNeighbors (Basis basis, int distance, LatticeShape &lattice, Neighbors &neighbors) |
void | generateIndexMatrix (LatticeShape &lattice) |
Variables | |
std::vector< std::vector< BasisPointer > > | VtoG |
std::vector< int > | DimsOfV |
IMatrix | IndexMatrix |
typedef boost::shared_ptr<Basis> BasisPointer |
void generateIndexMatrix | ( | LatticeShape & | lattice | ) |
void generateNeighbors | ( | Basis | basis, | |
int | distance, | |||
LatticeShape & | lattice, | |||
Neighbors & | neighbors | |||
) |
Given a two-particle state, this function generate its neighbors that at some distance. The distance can take both positive and negative values. If distance < 0, we call the neighbors left neighbors. If distance > 0, we call the neighbors right neighbors.
void getLatticeIndex | ( | LatticeShape & | lattice, | |
Basis & | basis, | |||
int & | site1, | |||
int & | site2 | |||
) |
In a lattice, we give each site an index. For example, in 1D, we can use the index numbers 0 ... xmax to denote each sites. In 2D, we still want to use a single number to denote each lattice site, so we assign a number to each position (x,y). This is a mapping from (x, y) to a positive integer nth.
Given a basis (1D or 2D), this function return the corresponding lattice index.
void printNeighbors | ( | Neighbors & | neighbors | ) |
std::vector<int> DimsOfV |
std::vector< std::vector<BasisPointer> > VtoG |