Skip to content

Commit

Permalink
simplify QS TDiv algorithm names
Browse files Browse the repository at this point in the history
  • Loading branch information
TilmanNeumann committed Feb 1, 2025
1 parent 7878138 commit 5b71576
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public TDiv_QS_2LP(boolean permitUnsafeUsage) {

@Override
public String getName() {
return "TDiv_2L_UBI_3h";
return "TDiv_2LP";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public TDiv_QS_2LP_Full(boolean permitUnsafeUsage) {

@Override
public String getName() {
return "TDiv_2L_UBI";
return "TDiv_2LP_Full";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public TDiv_QS_3LP(boolean permitUnsafeUsage) {

@Override
public String getName() {
return "TDiv_3L_UBI_3h";
return "TDiv_3LP";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public TDiv_QS_nLP(boolean permitUnsafeUsage) {

@Override
public String getName() {
return "TDiv_nL_UBI_3h";
return "TDiv_nLP";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public TDiv_QS_nLP_Full(boolean permitUnsafeUsage) {

@Override
public String getName() {
return "TDiv_nL_UBI";
return "TDiv_nLP_Full";
}

@Override
Expand Down

0 comments on commit 5b71576

Please sign in to comment.