starting new triangulation technique. verified working with edges.

This commit is contained in:
2020-01-07 16:27:35 -05:00
parent 050475b66b
commit 7f73604075
5 changed files with 111 additions and 126 deletions

View File

@@ -15,7 +15,7 @@ namespace tc {
data[target * ngens + gen] = coset;
if (path[target].coset == -1) {
path[target] = {coset, gen};
path[target] = {coset, gen, target};
}
}
@@ -26,7 +26,7 @@ namespace tc {
data[target * ngens + gen] = coset;
if (path[target].coset == -1) {
path[target] = {coset, gen};
path[target] = {coset, gen, target};
}
}