Skip to content

Commit b2cbc04

Browse files
committed
(#2) Minor fixes in docstrings
1 parent f5e621f commit b2cbc04

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/johnsons.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ end
236236
"""
237237
makespan(problem::JohnsonProblem, permutation::Vector{Int})
238238
239-
Given a problem containing a matrix of times and a permutation of the jobs, returns the makespan of the jobs.
239+
Given a problem containing a matrix of times and a permutation of the jobs, returns the makespan of the jobs.
240240
241241
# Arguments
242242

src/travelingsalesman.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ end
4848
"""
4949
solve(problem::TravelingSalesmanProblem; popsize = 100, ngen = 1000, pcross = 0.8, pmutate = 0.01, nelites = 1)::TravelingSalesmanResult
5050
51+
# Description
52+
5153
Given a matrix of distances wrapped in a TravelingSalesmanProblem, returns a TravelingSalesmanResult with the best route and its cost.
5254
5355
# Arguments

0 commit comments

Comments
 (0)