Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 09:09:50

0001 #ifndef ATOOLS_Math_Permutation_H
0002 #define ATOOLS_Math_Permutation_H
0003 
0004 namespace ATOOLS {
0005 
0006   class Permutation {
0007   private:
0008     int m_n, *p_per, *p_st;
0009     long int m_maxnum;
0010   public:
0011     Permutation(int);                   
0012     ~Permutation();                   
0013     int* Get(int);
0014     inline int MaxNumber() const { return m_maxnum; }
0015   };
0016 
0017 
0018 }
0019 
0020 #endif