Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 88e7190

Browse files
author
Matthias Koeppe
committed
ConvexRationalPolyhedralCone: Make __and__ an alias for intersection
1 parent 4541564 commit 88e7190

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/sage/geometry/cone.py

+9
Original file line numberDiff line numberDiff line change
@@ -3017,6 +3017,13 @@ def intersection(self, other):
30173017
N( 2, 5)
30183018
in 2-d lattice N
30193019
3020+
The intersection can also be expressed using the operator ``&``::
3021+
3022+
sage: (cone1 & cone2).rays()
3023+
N(-1, 3),
3024+
N( 2, 5)
3025+
in 2-d lattice N
3026+
30203027
It is OK to intersect cones living in sublattices of the same ambient
30213028
lattice::
30223029
@@ -3058,6 +3065,8 @@ def intersection(self, other):
30583065
p.add_constraints(other._PPL_cone().constraints())
30593066
return _Cone_from_PPL(p, self.lattice().intersection(other.lattice()))
30603067

3068+
__and__ = intersection
3069+
30613070
def is_equivalent(self, other):
30623071
r"""
30633072
Check if ``self`` is "mathematically" the same as ``other``.

0 commit comments

Comments
 (0)