xo-unit: refactor: bpu2_abbrev -> bpu_abbrev

This commit is contained in:
Roland Conybeare 2024-04-22 20:36:11 -04:00
commit 404930adef
3 changed files with 8 additions and 8 deletions

View file

@ -39,7 +39,7 @@ namespace xo {
}
static constexpr bpu_abbrev_type
bpu2_abbrev(dim native_dim,
bpu_abbrev(dim native_dim,
const scalefactor_ratio_type & scalefactor,
const power_ratio_type & power)
{
@ -92,7 +92,7 @@ namespace xo {
**/
constexpr bpu_abbrev_type abbrev() const
{
return abbrev::bpu2_abbrev(native_dim_,
return abbrev::bpu_abbrev(native_dim_,
scalefactor_,
power_);
}

View file

@ -69,7 +69,7 @@ namespace xo {
const scalefactor_ratio_type & scalefactor,
const power_ratio_type & power)
{
return abbrev::bpu2_abbrev(basis_dim,
return abbrev::bpu_abbrev(basis_dim,
scalefactor,
power);
}