Skip to content

Commit 5a1d1e3

Browse files
committed
fix bug
1 parent 4307033 commit 5a1d1e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pybdr/geometry/operation/boundary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def _polytope2zonotope(src: Polytope, r: float):
111111

112112
def _zonotope2zonotope_new(src: Zonotope, r: float):
113113
bound_boxes = _zonotope2interval(src, r)
114-
return [cvt2(box, Geometry.TYPE.POLYTOPE) for box in bound_boxes]
114+
return [cvt2(box, Geometry.TYPE.ZONOTOPE) for box in bound_boxes]
115115

116116

117117
def _zonotope2zonotope(src: Zonotope, r: float):

0 commit comments

Comments
 (0)