From 57fd3e185cf891c27fe93cde9fe9cabb9290468d Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Sun, 18 Apr 2021 20:07:33 -0700 Subject: [PATCH] Fixup doctest formatting --- src/sage/geometry/polyhedron/base.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/sage/geometry/polyhedron/base.py b/src/sage/geometry/polyhedron/base.py index c572362ad67..af666d1e1aa 100644 --- a/src/sage/geometry/polyhedron/base.py +++ b/src/sage/geometry/polyhedron/base.py @@ -10198,8 +10198,8 @@ def affine_hull_projection(self, as_polyhedron=None, as_affine_map=False, orthog sage: data = S.affine_hull_projection(orthogonal=True, ....: as_polyhedron=True, ....: as_affine_map=True); data - Polyhedron_base.AffineHullProjectionData(... - polyhedron=A 2-dimensional polyhedron in QQ^2 defined as the convex hull of 3 vertices, + Polyhedron_base.AffineHullProjectionData(polyhedron=A 2-dimensional polyhedron in QQ^2 + defined as the convex hull of 3 vertices, projection_linear_map=Vector space morphism represented by the matrix: [ -1 -1/2] [ 1 -1/2] @@ -10213,8 +10213,8 @@ def affine_hull_projection(self, as_polyhedron=None, as_affine_map=False, orthog Return all data:: sage: data = S.affine_hull_projection(orthogonal=True, return_all_data=True); data - Polyhedron_base.AffineHullProjectionData(... - polyhedron=A 2-dimensional polyhedron in QQ^2 defined as the convex hull of 3 vertices, + Polyhedron_base.AffineHullProjectionData(polyhedron=A 2-dimensional polyhedron in QQ^2 + defined as the convex hull of 3 vertices, projection_linear_map=Vector space morphism represented by the matrix: [ -1 -1/2] [ 1 -1/2] @@ -10236,8 +10236,8 @@ def affine_hull_projection(self, as_polyhedron=None, as_affine_map=False, orthog Same without ``orthogonal=True``:: sage: data = S.affine_hull_projection(return_all_data=True); data - Polyhedron_base.AffineHullProjectionData(... - polyhedron=A 2-dimensional polyhedron in ZZ^2 defined as the convex hull of 3 vertices, + Polyhedron_base.AffineHullProjectionData(polyhedron=A 2-dimensional polyhedron in ZZ^2 + defined as the convex hull of 3 vertices, projection_linear_map=Vector space morphism represented by the matrix: [1 0] [0 1]