This repository was archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Frédéric Chapoton
committed
Dec 6, 2018
1 parent
05dd734
commit 8c82533
Showing
6 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +0,0 @@ | ||
from __future__ import absolute_import | ||
from . import all | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
from __future__ import absolute_import | ||
# code exports | ||
from sage.misc.lazy_import import lazy_import | ||
|
||
from .spec import Spec | ||
from .hypersurface import ProjectiveHypersurface, AffineHypersurface | ||
lazy_import('sage.schemes.generic.spec', 'Spec') | ||
lazy_import('sage.schemes.generic.hypersurface', | ||
['ProjectiveHypersurface', 'AffineHypersurface']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +0,0 @@ | ||
from __future__ import absolute_import | ||
from . import all | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from __future__ import absolute_import | ||
# code exports | ||
|
||
from .fano_variety import CPRFanoToricVariety | ||
from .ideal import ToricIdeal | ||
from .library import toric_varieties | ||
from .variety import AffineToricVariety, ToricVariety | ||
|
||
|
||
from sage.misc.lazy_import import lazy_import | ||
|
||
from .fano_variety import CPRFanoToricVariety | ||
lazy_import('sage.schemes.ideal','ToricIdeal') | ||
lazy_import('sage.schemes.library', 'toric_varieties') | ||
lazy_import('sage.schemes.toric.variety', | ||
['AffineToricVariety', 'ToricVariety']) | ||
lazy_import('sage.schemes.toric.weierstrass', 'WeierstrassForm') |