File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 83
83
# https://www.gnu.org/licenses/
84
84
# ****************************************************************************
85
85
86
- from sage .structure .sage_object import SageObject
87
- from sage .topology .simplicial_complex import Simplex , SimplicialComplex
88
- from sage .modules .free_module import FreeModule
89
- from sage .rings .finite_rings .finite_field_constructor import GF
86
+ from sage .misc .cachefunc import cached_method
87
+ from sage .misc .lazy_import import lazy_import
90
88
from sage .rings .integer import Integer
91
89
from sage .rings .infinity import infinity
92
- from sage .misc .cachefunc import cached_method
90
+ from sage .structure .sage_object import SageObject
91
+ from sage .topology .simplicial_complex import Simplex , SimplicialComplex
92
+
93
+ lazy_import ('sage.modules.free_module' , 'FreeModule' )
94
+ lazy_import ('sage.rings.finite_rings.finite_field_constructor' , 'GF' )
93
95
94
96
95
97
class FilteredSimplicialComplex (SageObject ):
You can’t perform that action at this time.
0 commit comments