00001 #ifndef _SLATER_HPP_ 00002 #define _SLATER_HPP_ 00003 00004 // 00005 // Copyright (c) 2008 Simen Kvaal 00006 // 00007 // This file is part of OpenFCI. 00008 // 00009 // OpenFCI is free software: you can redistribute it and/or modify 00010 // it under the terms of the GNU General Public License as published by 00011 // the Free Software Foundation, either version 3 of the License, or 00012 // (at your option) any later version. 00013 // 00014 // OpenFCI is distributed in the hope that it will be useful, 00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 // GNU General Public License for more details. 00018 // 00019 // You should have received a copy of the GNU General Public License 00020 // along with OpenFCI. If not, see <http://www.gnu.org/licenses/>. 00021 // 00022 00023 #include "BitsetSlater.hpp" 00024 00034 namespace manybody { 00035 00036 #ifndef SLATER_BITS 00038 #define SLATER_BITS 512 00039 #endif 00040 00044 typedef size_t orbital_t; 00046 typedef BitsetSlater<SLATER_BITS> Slater; 00047 00048 } 00049 00050 #endif
1.4.7