Update dtl/Diff.hpp

This commit is contained in:
Scott E. Graves 2024-06-03 13:03:47 +00:00
parent 988e91555f
commit 2e266fa5ee

View File

@ -283,7 +283,7 @@ namespace dtl {
editDistance += static_cast<long long>(delta) + 2 * p; editDistance += static_cast<long long>(delta) + 2 * p;
long long r = path[delta+offset]; long long r = path[delta+offset];
P cordinate; P cordinate{};
editPathCordinates epc(0); editPathCordinates epc(0);
// recording edit distance only // recording edit distance only
@ -561,6 +561,8 @@ namespace dtl {
trivial = false; trivial = false;
editDistanceOnly = false; editDistanceOnly = false;
fp = NULL; fp = NULL;
ox = 0;
oy = 0;
} }
/** /**