//-----------------------------------------------// // This is the main file of the Ising model. // // This doesn't do much at the time // // // // Thomas Bisig (03.2005), thomas@macapp.net // //-----------------------------------------------// #include #include "Spin.hpp" #include "Lattice.hpp" using namespace std; int main() { Lattice L(5); cout << L.getOrientation(2)<<"\n"; L.setOrientation(2,-1); cout << L.getOrientation(2)<<"\n"; return 0; }