Skip to content

Commit

Permalink
more minor address
Browse files Browse the repository at this point in the history
  • Loading branch information
Datseris committed Jul 1, 2024
1 parent 79ae9e7 commit e65cd12
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
File renamed without changes.
5 changes: 2 additions & 3 deletions src/matching/matching_interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ function _match_attractors(
current_attractors, prev_attractors, matcher,
mapper, p, pprev
)
rmap = replacement_map(current_attractors, prev_attractors, matcher)
return rmap
return replacement_map(current_attractors, prev_attractors, matcher)
end


Expand Down Expand Up @@ -194,5 +193,5 @@ function _rematch_with_past!(attractors_cont, matcher)
return rmaps
end

include("match_basins.jl")
include("basin_overlap.jl")
include("sssdistance.jl")
5 changes: 3 additions & 2 deletions src/matching/sssdistance.jl
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ matching pool to ensure a unique mapping. Then, the next pair with least
remaining distance is matched, and the process repeats until all pairs are exhausted.
Additionally, you can provide a `threshold` value. If the distance between two sets
is larger than this `threshold`, then it is guaranteed that the sets will get assigned
different ID in the replacement map (the next available integer).
is larger than this `threshold`, then it is guaranteed that the two sets will get assigned
different ID in the replacement map, and hence, the set in `a₊` gets the next available
integer as its ID.
When matching during a global continuation, there is an entire sequence of "old"-"new" collections
of sets for each step of the global continuation. The keyword `use_vanished::Bool` comes
Expand Down

0 comments on commit e65cd12

Please sign in to comment.