up previous next
NmzComputation

flexible access to Normaliz

Syntax
NmzComputation(Cone: RECORD): RECORD
NmzComputation(Cone: RECORD, ToCompute: LIST): RECORD

Description
(while waiting for a proper description, have a guess from this example ;-)

Example
/**/ Cone := record[ integral_closure := mat([[1,2],[2,1]]) ];
/**/ NC := NmzComputation(Cone,
/**/                      ["HilbertBasis","SupportHyperplanes"]
/**/                      );
/**/ indent(NC);
record[
  HilbertBasis := [[2, 1], [1, 2], [1, 1]],
  SupportHyperplanes := [[-1, 2], [2, -1]]
]

See Also