Changes between Version 4 and Version 5 of Ticket #28753
- Timestamp:
- 11/18/19 17:08:16 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #28753 – Description
v4 v5 1 Implement a method which returns the ramification type of a rational function. The ramification type is a list of lists of positive integersdefined by the pseudo code1 Implement a method which returns the ramification type of a rational function. The ramification type is a list of lists of integers >1 defined by the pseudo code 2 2 3 3 def ram_type(self): … … 6 6 ram_inds=list() 7 7 for c in F.preimage(b) 8 ram_inds.append( c)8 ram_inds.append(e_self(c)) if e_self(c) >1 9 9 ram_types.append(ram_inds) 10 10