You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Bethe_State.cc 772B

1234567891011121314151617181920212223242526272829
  1. /**********************************************************
  2. This software is part of J.-S. Caux's ABACUS library.
  3. Copyright (c) J.-S. Caux.
  4. -----------------------------------------------------------
  5. File: src/BETHE/Bethe_State.cc
  6. Purpose: defines functions in Bethe_State class,
  7. providing a unified object for eigenstates of all
  8. Bethe Ansatz integrable models.
  9. IN DEVELOPMENT
  10. ***********************************************************/
  11. #include "ABACUS.h"
  12. using namespace std;
  13. namespace ABACUS {
  14. Bethe_State::Bethe_State (long long int base_id_ref, long long int type_id_ref,
  15. long long int id_ref, long long int maxid_ref) :
  16. base_id(base_id_ref), type_id(type_id_ref), id(id_ref), maxid(maxid_ref) {}
  17. } // namespace ABACUS