Basic period and operator setup
This commit is contained in:
@@ -12,12 +12,21 @@ elliptic_curve_D = ToricPolytopeProjectiveSpace([1, 2, 3], model_name="elliptic_
|
||||
|
||||
CY3_quintic = ToricPolytopeProjectiveSpace([1, 1, 1, 1, 1], model_name="quintic")
|
||||
CY3_bicubic = ToricPolytopeCICY([[3, 3]], model_name="bi-cubic")
|
||||
CICY3_two_parameter_manual_nef = ToricPolytope([[1,0,0,0,0,0],[0,1,0,0,0,0],[0,0,1,0,0,0],
|
||||
[0,0,0,1,0,0],[0,0,0,0,1,0],[0,0,0,0,0,1],
|
||||
[-1,-1,0,0,0,0],[0,0,-1,-1,-1,-1]],
|
||||
nef_partition=[[0,1,2,3], [4,5,6,7]])
|
||||
CICY3_two_parameter_manual_nef = ToricPolytope(
|
||||
[
|
||||
[1, 0, 0, 0, 0, 0],
|
||||
[0, 1, 0, 0, 0, 0],
|
||||
[0, 0, 1, 0, 0, 0],
|
||||
[0, 0, 0, 1, 0, 0],
|
||||
[0, 0, 0, 0, 1, 0],
|
||||
[0, 0, 0, 0, 0, 1],
|
||||
[-1, -1, 0, 0, 0, 0],
|
||||
[0, 0, -1, -1, -1, -1],
|
||||
],
|
||||
nef_partition=[[0, 1, 2, 3], [4, 5, 6, 7]],
|
||||
)
|
||||
|
||||
CICY5_two_parameter = ToricPolytopeCICY([[6, 1],[0, 2]])
|
||||
CICY5_two_parameter = ToricPolytopeCICY([[6, 1], [0, 2]])
|
||||
```
|
||||
|
||||
The discriminant factors and topological data, e.g. for the quintic, can then be computed with the methods below.
|
||||
|
||||
Reference in New Issue
Block a user