Skip to content
Snippets Groups Projects
Commit e281ac32 authored by patavirt's avatar patavirt
Browse files

Documentation

parent 82dfc179
No related branches found
No related tags found
No related merge requests found
......@@ -162,12 +162,18 @@ class Core:
@property
def Ux(self):
"""Modifiable view to Wilson link matrix array, for LEFT"""
"""Modifiable view to Wilson link matrix array, for RIGHT.
The U for links to the LEFT is always the inverse of this.
"""
return self.U[:, :, 0, :, :]
@property
def Uy(self):
"""Modifiable view to Wilson link matrix array, for UP"""
"""Modifiable view to Wilson link matrix array, for UP.
The U for links to DOWN is always the inverse of this.
"""
return self.U[:, :, 1, :, :]
......
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