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 1 kB image not shown  

Quelle  write.c   Sprache: C

 
/****************************************************************************
**
*A  write.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 "pga_vars.h"
#include "constants.h"

/* write using fwrite pcp to file ofp */

void save_pcp(FILE *ofp, struct pcp_vars *pcp)
{
   register int *y = y_address;

   compact(pcp);

   fwrite(pcp, sizeof(struct pcp_vars), 1, ofp);
   fwrite(y, sizeof(int), pcp->lused + 1, ofp);
   fwrite(y + pcp->subgrp, sizeof(int), pcp->backy - pcp->subgrp + 1, ofp);
}

/* save using fwrite a description of the pga structure of
   the group and of its automorphisms to file ofp */


void save_pga(FILE *ofp,
              int ***central,
              int ***stabiliser,
              struct pga_vars *pga,
              struct pcp_vars *pcp)
{
   register int i, j;

#ifdef HAVE_GMP
   mpz_out_str(ofp, 10, &pga->aut_order);
#endif

   fwrite(pga, sizeof(struct pga_vars), 1, ofp);

   for (i = 1; i <= pga->nmr_centrals; ++i)
      for (j = 1; j <= pga->ndgen; ++j)
         fwrite(central[i][j] + 1, sizeof(int), pcp->lastg, ofp);

   for (i = 1; i <= pga->nmr_stabilisers; ++i)
      for (j = 1; j <= pga->ndgen; ++j)
         fwrite(stabiliser[i][j] + 1, sizeof(int), pcp->lastg, ofp);

   fwrite(pga->relative + 1, sizeof(int), pga->nmr_soluble, ofp);
}

73%


¤ Dauer der Verarbeitung: 0.14 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.