aboutsummaryrefslogtreecommitdiff
path: root/ell_relax.c
diff options
context:
space:
mode:
Diffstat (limited to 'ell_relax.c')
-rw-r--r--ell_relax.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ell_relax.c b/ell_relax.c
index ffc4522..ced949c 100644
--- a/ell_relax.c
+++ b/ell_relax.c
@@ -39,19 +39,19 @@ static const struct {
unsigned int stride_idx;
unsigned int is_upper;
} boundary_def[] = {
- [ELL_RELAX_BOUNDARY_00] = {
+ [ELL_RELAX_BOUNDARY_0L] = {
.stride_idx = 0,
.is_upper = 0
},
- [ELL_RELAX_BOUNDARY_01] = {
+ [ELL_RELAX_BOUNDARY_0U] = {
.stride_idx = 0,
.is_upper = 1,
},
- [ELL_RELAX_BOUNDARY_10] = {
+ [ELL_RELAX_BOUNDARY_1L] = {
.stride_idx = 1,
.is_upper = 0,
},
- [ELL_RELAX_BOUNDARY_11] = {
+ [ELL_RELAX_BOUNDARY_1U] = {
.stride_idx = 1,
.is_upper = 1,
},