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

Commit

Permalink
Polyhedron_base._volume_lrs: Use Lrs().absolute_filename()
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Apr 2, 2022
1 parent 1b90dd9 commit e244564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/geometry/polyhedron/base7.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def _volume_lrs(self, verbose=False):
if verbose:
print(in_str)

lrs_procs = Popen(['lrs', in_filename],
lrs_procs = Popen([Lrs().absolute_filename(), in_filename],
stdin=PIPE, stdout=PIPE, stderr=PIPE)
ans, err = lrs_procs.communicate()
ans = bytes_to_str(ans)
Expand Down

0 comments on commit e244564

Please sign in to comment.