Skip to content
Snippets Groups Projects
Commit 2887edaa authored by Marcel Koch's avatar Marcel Koch
Browse files

reverts iname order to be consistent with definition of array alias

parent 31e83903
No related branches found
No related tags found
No related merge requests found
...@@ -20,4 +20,4 @@ def lfs_inames(element, restriction, count=None, context=''): ...@@ -20,4 +20,4 @@ def lfs_inames(element, restriction, count=None, context=''):
for i in range(world_dimension()): for i in range(world_dimension()):
inames = inames + (name+dim_names[i],) inames = inames + (name+dim_names[i],)
domain(name+dim_names[i], element.degree() + 1) domain(name+dim_names[i], element.degree() + 1)
return inames return inames[-1::-1]
...@@ -25,7 +25,7 @@ def sub_element_inames(): ...@@ -25,7 +25,7 @@ def sub_element_inames():
for i in range(dim): for i in range(dim):
inames = inames + ("subel_"+dim_names[i],) inames = inames + ("subel_"+dim_names[i],)
domain("subel_"+dim_names[i], get_option("number_of_blocks")) domain("subel_"+dim_names[i], get_option("number_of_blocks"))
return inames return inames[-1::-1]
# define inames for boundary integration # define inames for boundary integration
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment