Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit c89f2a8

Browse files
committed
fix typo
1 parent 9bb2f37 commit c89f2a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/coloring/backtracking_coloring.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ end
189189
Returns least index i such that color of vertex
190190
A[i] is equal to `opt` (optimal chromatic number)
191191
"""
192-
opt::Integer)
193192
function least_index(F::AbstractVector{<:Integer}, A::AbstractVector{<:Integer},
193+
opt::Integer)
194194
for i in eachindex(A)
195195
if F[A[i]] == opt
196196
return i

0 commit comments

Comments
 (0)