[BACK]Return to cohom.k CVS log [TXT][DIR] Up to [local] / OpenXM / src / k097 / lib / minimal

Diff for /OpenXM/src/k097/lib/minimal/cohom.k between version 1.1 and 1.2

version 1.1, 2000/05/03 06:42:07 version 1.2, 2000/06/14 07:44:04
Line 1 
Line 1 
 /* $OpenXM$ */  /* $OpenXM: OpenXM/src/k097/lib/minimal/cohom.k,v 1.1 2000/05/03 06:42:07 takayama Exp $ */
   
   /* k0 interface functions for cohom.sm1 */
 def Boundp(a) {  def Boundp(a) {
    local b;     local b;
    sm1("[(parse) [(/) ",a," ( load tag 0 eq     sm1("[(parse) [(/) ",a," ( load tag 0 eq
Line 185  def ex2_9() {
Line 185  def ex2_9() {
   return(a);    return(a);
 }  }
   
   def to_int0(A) {
      local i,c,n,r;
      if (IsArray(A)) {
        n = Length(A);
        r = NewArray(n);
        for (i=0; i<n; i++) {
          r[i] = to_int0(A[i]);
        }
        return(r);
      } else if (IsInteger(A)) {
        return(IntegerToSm1Integer(A));
      } else {
        return(A);
      }
   }
   HelpAdd(["Translate.to_int0",
    ["to_int0(a) :  as same as sm1_push_int0."]]);
   
   
   def GKZ(A,B) {
     /* we need sm1_rat_to_p in a future. */
     local c;
     c = to_int0([A,B]);
     sm1(c," gkz /FunctionValue set ");
   }
   HelpAdd(["GKZ.GKZ",
     ["GKZ(a,b) returns the GKZ systems associated to the matrix a and the vector b",
      "The answer is given by strings.",
      "Example: GKZ([[1,1,1,1],[0,1,3,4]],[0,2])"]]);
   
   def Rest(a) {
     sm1(a," rest /FunctionValue set ");
   }
   HelpAdd(["Rest",
   ["Rest(a), list a; "]]);
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>