Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/pkg/anupq/src/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 28.7.2025 mit Größe 2 kB image not shown  

Quelle  collect_relations.c   Sprache: C

 
/****************************************************************************
**
*A  collect_relations.c         ANUPQ source                   Eamonn O'Brien
**
*Y  Copyright 1995-2001,  Lehrstuhl D fuer Mathematik,  RWTH Aachen,  Germany
*Y  Copyright 1995-2001,  School of Mathematical Sciences, ANU,     Australia
**
*/


#include "pq_defs.h"
#include "pcp_vars.h"
#include "pq_functions.h"

/* collect defining relations and solve corresponding equations;
   a commutator relation is stored with a negative length */


void collect_relations(struct pcp_vars *pcp)
{
   register int *y = y_address;

   register int i;
   register int j;
   register int k;
   register int p1;
   register int length;
   register int cp, cp1, cp2;

   register int relp = pcp->relp;
   register int ndrel = pcp->ndrel;
   register int lastg = pcp->lastg;

   for (i = 1; i <= ndrel; ++i) {

      /* space is required for two collected parts set up here
         and possibly for 5 * pcp->lastg in collect_def_comm */

      if (is_space_exhausted(7 * lastg + 7, pcp))
         return;

      cp1 = pcp->lused;
      cp2 = cp1 + lastg;

      /*  original zero out -- bug reported by John Cannon October 1998 */
      /*
            for (j = 1; j <= lastg; ++j)
               y[cp1 + j] = y[cp2 + j] = 0;
      */


      for (j = 1; j <= 2; ++j) {
         p1 = y[++relp];
         if (p1 != 0) {
            cp = (j == 1) ? cp1 : cp2;
            /* bug fix */
            for (k = 1; k <= lastg; ++k)
               y[cp + k] = 0;
            length = y[p1];
            /* is the relation a word or a commutator? */
            if (length > 0)
               collect_gen_word(p1, length, cp, pcp);
            else if (length < 0) {
               /* we may need to update pcp->lused, as space immediately
                  above it is used in commutator routines */

               if (j == 2)
                  pcp->lused += lastg;
               collect_def_comm(p1, cp, pcp);
               if (j == 2)
                  pcp->lused -= lastg;
            }
            if (!pcp->valid)
               return;
         }
      }

      echelon(pcp);
      if ((pcp->fullop && pcp->eliminate_flag) || pcp->diagn)
         text(1, i, 0, 0, 0);
      if (pcp->overflow || pcp->complete != 0)
         return;
   }
}

94%


¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.