]> gitweb.michael.orlitzky.com - sage.d.git/blob - mjo/eja/eja_utils.py
eja: drop custom gram_schmidt() routine that isn't noticeably faster.
[sage.d.git] / mjo / eja / eja_utils.py
1 from sage.modules.free_module_element import vector
2
3 def _mat2vec(m):
4 return vector(m.base_ring(), m.list())