Skip to content

Commit

Permalink
Fix warning message in ransacked
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkovesi authored Feb 23, 2021
1 parent aef871c commit 3e397e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ransac.jl
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function ransac(x, fittingfn, distfn, degenfn, s, t, feedback = false,
# Safeguard against being stuck in this loop forever
count += 1
if count > maxDataTrials
warn("Unable to select a nondegenerate data set")
@warn("Unable to select a nondegenerate data set")
break
end
end
Expand Down

0 comments on commit 3e397e0

Please sign in to comment.