#10039: Make Parma Polyhedra Library a standard library
----------------------------+-----------------------------------------------
   Reporter:  vbraun        |       Owner:  mhampton    
       Type:  enhancement   |      Status:  needs_review
   Priority:  major         |   Milestone:  sage-feature
  Component:  geometry      |    Keywords:  ppl spkg    
     Author:  Volker Braun  |    Upstream:  N/A         
   Reviewer:                |      Merged:              
Work_issues:                |  
----------------------------+-----------------------------------------------

Comment(by mhampton):

 This looks very good.

 One doctest problem is that on 32-bit machines we get:
 {{{
 File "/Users/mh/sagestuff/sage-4.6.1.rc1/devel/sage-t1/sage/libs/ppl.pyx",
 line 2299:
     sage: C_Polyhedron(1, 'empty').max_space_dimension()
 Expected:
     1152921504606846973
 Got:
     357913939
 }}}

 so maybe that should be something like

 {{{
 sage: max_dim = C_Polyhedron(1, 'empty').max_space_dimension()
 sage: max_dim in [357913939,1152921504606846973]
 sage: True
 }}}

 or just

 {{{
 sage: max_dim = C_Polyhedron(1, 'empty').max_space_dimension()
 sage: max_dim > 1
 sage: True
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/10039#comment:36>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sage-trac?hl=en.

Reply via email to