mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 19:53:45 +01:00
25eec4e046
- Silence some trivial warning. - TODO: narrowing in a few places.
66 lines
2.9 KiB
C++
66 lines
2.9 KiB
C++
/*******************************************************************************
|
|
*
|
|
* TRIQS: a Toolbox for Research in Interacting Quantum Systems
|
|
*
|
|
* Copyright (C) 2011 by O. Parcollet
|
|
*
|
|
* TRIQS is free software: you can redistribute it and/or modify it under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, either version 3 of the License, or (at your option) any later
|
|
* version.
|
|
*
|
|
* TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* TRIQS. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
******************************************************************************/
|
|
#ifndef TRIQS_ARRAYS_PERMUTATIONS2_H
|
|
#define TRIQS_ARRAYS_PERMUTATIONS2_H
|
|
namespace triqs { namespace arrays { namespace permutations {
|
|
|
|
typedef unsigned long long ull;
|
|
|
|
constexpr ull apply(ull p, ull i) { return (p >> (4*(i+1))) & 0xFull;}
|
|
constexpr ull size( ull p) { return p & 0xFull;}
|
|
|
|
inline ull permutation_from_array ( const int * const p, int length) {
|
|
ull res =0;
|
|
for (int i =length-1; i>=0; --i) res = p[i] + 0x10*res;
|
|
res= 0x10 * res + length;
|
|
return res;
|
|
}
|
|
|
|
// sum_{k=0}^{n-1} k a^k = ( (n-1) * a**(n+1) - n * a**n + a)/(a-1)**2
|
|
// sum_{k=0}^{n-1} k a^(n-k-1) = ( (n-1) - n * a + a**n)/(a-1)**2
|
|
// with a = 16, a**n = 1<<4n
|
|
constexpr ull _identity(ull n) { return ( (n-1ull)*(1ull<<(4*(n+1))) +(1ull<<4)- n *(1ull<<(4*n))) /( (1ull<<4) -1ull) /((1ull<<4) -1ull); }
|
|
constexpr ull identity(ull n) { return n + 0x10 * _identity(n);}
|
|
|
|
constexpr ull _ridentity(ull n) { return ( (n-1ull) - n* (1ull<<4) + (1ull<<(4*n))) /( (1ull<<4) -1ull) /((1ull<<4) -1ull); }
|
|
constexpr ull ridentity(ull n) { return n + 0x10 *_ridentity(n); }
|
|
|
|
constexpr ull make_perm_impl(){ return 0;}
|
|
template<typename ... T> constexpr ull make_perm_impl(ull i0, T... x) { return i0 + 0x10 * make_perm_impl(x...); }
|
|
template<typename ... T> constexpr ull permutation(T... x) { return ull(sizeof...(T)) + 0x10* make_perm_impl(x...); }
|
|
|
|
constexpr ull compose_impl(ull p1, ull p2, ull c) { return apply(p2, apply(p1,c)) + 16ull * ( (c+1 <size(p1) ? compose_impl(p1,p2,c+1ull) : 0)); }
|
|
constexpr ull compose(ull p1, ull p2) { return size(p1) + 0x10* compose_impl(p1,p2, 0);}
|
|
|
|
constexpr ull inverse_impl(ull p, ull c) { return (c << (4*apply(p,c))) + (c>0 ? inverse_impl(p,c-1): 0 ); }
|
|
constexpr ull inverse(ull p) { return size(p) + 0x10ull*inverse_impl(p,size(p)-1);}
|
|
|
|
inline void print( std::ostream & out, ull perm) {
|
|
out << "(";
|
|
for (int i =0; i< int(permutations::size(perm)); ++i) { out << (i!=0 ? " " : "") << apply(perm,i);}
|
|
out << ")";
|
|
}
|
|
}
|
|
using permutations::permutation;
|
|
}}
|
|
#endif
|
|
|