def make_vecs(self):
        '''Generate an ordered list of vectors representing the form of the
        Potapov factors.

        '''
        self.vecs = Potapov.get_Potapov_vecs(self.T,self.roots)
        return
Exemplo n.º 2
0
    def make_vecs(self):
        '''Generate an ordered list of vectors representing the form of the
        Potapov factors.

        '''
        self.vecs = Potapov.get_Potapov_vecs(self.T, self.roots)
        return
 def make_commensurate_vecs(self,):
     self.commensurate_vecs = Potapov.get_Potapov_vecs(
         self.T,self.commensurate_roots)
     self.vecs = map(
         lambda i: self.commensurate_vecs[self.map_root_to_commensurate_index[i]],
         range(len(self.roots)) )
     return
Exemplo n.º 4
0
 def make_commensurate_vecs(self, ):
     self.commensurate_vecs = Potapov.get_Potapov_vecs(
         self.T, self.commensurate_roots)
     self.vecs = map(
         lambda i: self.
         commensurate_vecs[self.map_root_to_commensurate_index[i]],
         range(len(self.roots)))
     return