[top][index]
search for:

module CoherentSheaf -- get the module defining a coherent sheaf

Synopsis:

  • Function: module
  • Input:
  • an instance of class CoherentSheaf.
  • Output:
  • an instance of class Module.
  • module F -- produce the module from which the coherent sheaf F was defined.

    i1 : X = Proj(QQ[x,y,z])

    o1 = X

    o1 : ProjectiveVariety
    i2 : F = OO_X(3)

            1
    o2 = OO  (3)
           X

    o2 : coherent sheaf on X, free
    i3 : module F

                     1
    o3 = QQ [x, y, z]

    o3 : QQ [x, y, z]-module, free, degrees {-3}
    i4 : degrees oo

    o4 = {{-3}}

    o4 : List

    Code:

         -- ../../../Macaulay2/m2/varieties.m2:117
         module CoherentSheaf := Module => (F) -> F.module

    [top][index]
    search for: