Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mcf: add workaround to avoid hang during tropical median #471

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/Polymake.jl
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,13 @@ function __init__()
application("polytope")
shell_execute("require LPparser;")

# workaround until next polymake release to make sure mcf does not get stuck
Polymake.shell_execute(raw"""
if (application("graph")->configured->{"mcf.rules"} > 0) {
$mcf = "$mcf -q" unless ($mcf =~ / -q/);
}
""")

for app in call_function(:common, :startup_applications)
application(app)
end
Expand Down
Loading