Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion leuvenmapmatching/matcher/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ def match_incremental(self, path, unique=True, tqdm=None, backtrace_len=None):
return [], 0
else:
start_obs_idx = len(self.path)
for idx in range(len(self.path)):
for idx in range(len(path)):
self.lattice[start_obs_idx + idx] = LatticeColumn(start_obs_idx + idx)
self.path += path

Expand Down