Skip to content

Commit 62ad2a3

Browse files
author
Matthias Koeppe
committed
Add 'type=standard' in more places that use pplpy
1 parent ad202ba commit 62ad2a3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/sage/geometry/cone.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@
237237
from sage.features import PythonModule
238238
lazy_import('ppl', ['C_Polyhedron', 'Generator_System', 'Constraint_System',
239239
'Linear_Expression', 'Poly_Con_Relation'],
240-
feature=PythonModule("ppl", spkg="pplpy"))
240+
feature=PythonModule("ppl", spkg="pplpy", type="standard"))
241241
lazy_import('ppl', ['ray', 'point'], as_=['PPL_ray', 'PPL_point'],
242-
feature=PythonModule("ppl", spkg="pplpy"))
242+
feature=PythonModule("ppl", spkg="pplpy", type="standard"))
243243

244244

245245
def is_Cone(x):

src/sage/geometry/lattice_polytope.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,9 @@
119119
from sage.features import PythonModule
120120
from sage.features.palp import PalpExecutable
121121
lazy_import('ppl', ['C_Polyhedron', 'Generator_System', 'Linear_Expression'],
122-
feature=PythonModule("ppl", spkg="pplpy"))
122+
feature=PythonModule("ppl", spkg="pplpy", type="standard"))
123123
lazy_import('ppl', 'point', as_='PPL_point',
124-
feature=PythonModule("ppl", spkg="pplpy"))
124+
feature=PythonModule("ppl", spkg="pplpy", type="standard"))
125125

126126
from sage.matrix.constructor import matrix
127127
from sage.structure.element import is_Matrix

src/sage/geometry/polyhedron/backend_ppl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from sage.features import PythonModule
1717
lazy_import('ppl', ['C_Polyhedron', 'Generator_System', 'Constraint_System',
1818
'Linear_Expression', 'line', 'ray', 'point'],
19-
feature=PythonModule("ppl", spkg="pplpy"))
19+
feature=PythonModule("ppl", spkg="pplpy", type="standard"))
2020

2121

2222
#########################################################################

0 commit comments

Comments
 (0)