Skip to content

Commit

Permalink
[trivial] fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
Silvan Sievers committed Oct 12, 2023
1 parent c363106 commit 26da539
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class LandmarkCostPartitioningHeuristicFeature : public plugins::TypedFeature<Ev
document_note(
"Optimal Cost Partitioning",
"To use ``cost_partitioning=optimal``, you must build the planner with LP "
"support. See LPBuildInstructions.");
"support. See [[build instructions|https://github.com/aibasel/downward/blob/main/BUILD.md]].");
document_note(
"Preferred operators",
"Preferred operators should not be used for optimal planning. "
Expand Down
4 changes: 2 additions & 2 deletions src/search/lp/lp_solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void add_lp_solver_option_to_feature(plugins::Feature &feature) {
feature.document_note(
"Note",
"to use an LP solver, you must build the planner with LP support. "
"See LPBuildInstructions.");
"See [[build instructions|https://github.com/aibasel/downward/blob/main/BUILD.md]].");
}

LPConstraint::LPConstraint(double lower_bound, double upper_bound)
Expand Down Expand Up @@ -136,7 +136,7 @@ LPSolver::LPSolver(LPSolverType solver_type) {
cerr << "Tried to use LP solver " << missing_solver
<< ", but the planner was compiled without support for it."
<< endl
<< "See https://www.fast-downward.org/LPBuildInstructions\n"
<< "See https://github.com/aibasel/downward/blob/main/BUILD.md\n"
<< "to install " << missing_solver
<< " and use it in the planner." << endl;
utils::exit_with(utils::ExitCode::SEARCH_CRITICAL_ERROR);
Expand Down

0 comments on commit 26da539

Please sign in to comment.