summaryrefslogtreecommitdiff
path: root/ell_relax.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2018-08-02 10:50:31 +0200
committerAnton Khirnov <anton@khirnov.net>2018-08-02 10:50:31 +0200
commita024abad458af1ba6eb9135ca982d3fe762ea855 (patch)
tree1cfa8db009690682685ad9325092a37dcc5f2657 /ell_relax.c
parent0c2415fba915161f8d08a95f67596c39122d77f5 (diff)
Better names for the boundary locations.
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,
},