Changeset 407fdc0 in git


Ignore:
Timestamp:
Apr 10, 2009, 3:26:09 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
6af4b1d2770833d1e8d4e66dd4c4613664220413
Parents:
93217595e92501afce06f4d77bde8ddc4bb0328a
Message:
hannes: syntax fix


git-svn-id: file:///usr/local/Singular/svn/trunk@11669 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular/LIB
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/matrix.lib

    r932175 r407fdc0  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: matrix.lib,v 1.47 2009-02-20 18:58:36 Singular Exp $";
     2version="$Id: matrix.lib,v 1.48 2009-04-10 13:26:09 Singular Exp $";
    33category="Linear Algebra";
    44info="
     
    4545LIB "random.lib";
    4646LIB "general.lib"; // for sort
    47 LIB "nctools.lib"; // for SuperCommutative
     47LIB "nctools.lib"; // for superCommutative
    4848
    4949///////////////////////////////////////////////////////////////////////////////
     
    11551155
    11561156//------------------------- choose exterior basis -------------------------
    1157   def T = SuperCommutative(); setring T;
     1157  def T = superCommutative(); setring T;
    11581158  ideal extBasis = simplify( NF(maxideal(k), std(0)), 1 + 2 + 8 );
    11591159
     
    13181318
    13191319// symmetric power over an exterior algebra:
    1320 def g = SuperCommutative(); setring g; g;
     1320def g = superCommutative(); setring g; g;
    13211321
    13221322module B = a*gen(1) + c* gen(2), b * gen(1) + d * gen(2); print(B);
     
    13771377  print(exteriorPower(B, 3));
    13781378
    1379   def g = SuperCommutative(); setring g; g;
     1379  def g = superCommutative(); setring g; g;
    13801380
    13811381  module A = a*gen(1), b * gen(1), c*gen(2), d * gen(2);
  • Singular/LIB/nctools.lib

    r932175 r407fdc0  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: nctools.lib,v 1.45 2009-04-09 12:18:34 seelisch Exp $";
     2version="$Id: nctools.lib,v 1.46 2009-04-10 13:25:10 Singular Exp $";
    33category="Noncommutative";
    44info="
     
    728728
    729729///////////////////////////////////////////////////////////////////////////////
    730 proc SuperCommutative(list #)
    731 "USAGE:   SuperCommutative([b,[e, [Q, [flag]]]]);
     730proc superCommutative(list #)
     731"USAGE:   superCommutative([b,[e, [Q, [flag]]]]);
    732732RETURN:  qring
    733733PURPOSE:  create a super-commutative algebra (as a GR-algebra) over a basering,
Note: See TracChangeset for help on using the changeset viewer.