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

Commit b1360f7

Browse files
author
Matthias Koeppe
committed
Polyhedron_base._volume_lrs: Use Lrs().absolute_filename()
1 parent 88bef23 commit b1360f7

File tree

1 file changed

+1
-1
lines changed
  • src/sage/geometry/polyhedron

1 file changed

+1
-1
lines changed

src/sage/geometry/polyhedron/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2006,7 +2006,7 @@ def _volume_lrs(self, verbose=False):
20062006
if verbose:
20072007
print(in_str)
20082008

2009-
lrs_procs = Popen(['lrs', in_filename],
2009+
lrs_procs = Popen([Lrs().absolute_filename(), in_filename],
20102010
stdin=PIPE, stdout=PIPE, stderr=PIPE)
20112011
ans, err = lrs_procs.communicate()
20122012
ans = bytes_to_str(ans)

0 commit comments

Comments
 (0)