[back] [prev] [next] [index] [root]

 


OrderBasisIsRel

Returns true iff the basis of an order is given by a transformation matrix.

Syntax:

b := OrderBasisIsRel(o);

boolean
  b  
order
  o  

See also:  OrderBasisIsPower, OrderEquationOrder

Description:

no detailed description available yet


Example:

Checks, whether a certain order is an equation order or given by a transformation matrix.

kash> O:= Order (Poly (Zx,[1,0,-186,0,13097,0,-412704,0,4946176]));
Generating polynomial: x^8 - 186*x^6 + 13097*x^4 - 412704*x^2 + 4946176

kash> OrderBasisIsRel(OrderEquationOrder(O));
false
kash> OrderBasisIsRel(O);
> false


<- back[back] [prev] [next] [index] [root]