Changeset ee3507 in git


Ignore:
Timestamp:
Aug 7, 2008, 3:18:36 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
6a6dcddfee86f8fbec5f4296b95bf41b5a318892
Parents:
6a4ea18c015f305455d0ce716fdbf16b8bce8846
Message:
*hannes: conventions


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

Legend:

Unmodified
Added
Removed
  • kernel/f5gb.cc

    r6a4ea1 ree3507  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: f5gb.cc,v 1.8 2008-08-05 20:44:08 ederc Exp $ */
     4/* $Id: f5gb.cc,v 1.9 2008-08-07 13:18:36 Singular Exp $ */
    55/*
    66* ABSTRACT: f5gb interface
    77*/
    88#include "mod2.h"
     9
     10#ifdef HAVE_F5
    911#include "kutil.h"
    1012#include "structs.h"
     
    2224#include "f5gb.h"
    2325#include "lpolynom.h"
    24 #ifdef HAVE_F5
    2526
    2627
  • kernel/f5gb.h

    r6a4ea1 ree3507  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: f5gb.h,v 1.7 2008-08-05 20:44:08 ederc Exp $ */
     4/* $Id: f5gb.h,v 1.8 2008-08-07 13:18:36 Singular Exp $ */
    55/*
    66* ABSTRACT: f5gb interface
     
    88#ifndef F5_HEADER
    99#define F5_HEADER
    10 #include "mod2.h"
    11 #include "lpolynom.h"
    1210
    1311#ifdef HAVE_F5
     12#include "lpolynom.h"
    1413
    1514
    1615// structure of the rules, i.e. index and term
    17 struct rule{
     16struct rule
     17{
    1818        long index;
    1919        poly term;
  • kernel/lpolynom.cc

    r6a4ea1 ree3507  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: lpolynom.cc,v 1.1 2008-08-05 20:44:08 ederc Exp $ */
     4/* $Id: lpolynom.cc,v 1.2 2008-08-07 13:18:36 Singular Exp $ */
    55/*
    66* ABSTRACT: lpolynomial definition
    77*/
    88#include "mod2.h"
     9
     10#ifdef HAVE_F5
    911#include "kutil.h"
    1012#include "structs.h"
     
    2224#include "f5gb.h"
    2325#include "lpolynom.h"
    24 #ifdef HAVE_F5
    2526
    2627
     
    2930*/
    3031
    31 void lpoly::setPoly(poly p){
     32void lpoly::setPoly(poly p)
     33{
    3234        polynomial = p;
    3335}
    3436
    35 void lpoly::setTerm(poly t){
     37void lpoly::setTerm(poly t)
     38{
    3639        term = t;
    3740}
    3841
    39 void lpoly::setIndex(long i){
     42void lpoly::setIndex(long i)
     43{
    4044        index = i;
    4145}
    4246
    43 poly lpoly::getPoly(){
     47poly lpoly::getPoly()
     48{
    4449        return polynomial;
    4550}
    4651
    47 poly lpoly::getTerm(){
     52poly lpoly::getTerm()
     53{
    4854        return term;
    4955}
    5056
    51 long lpoly::getIndex(){
     57long lpoly::getIndex()
     58{
    5259        return index;
    5360}
  • kernel/lpolynom.h

    r6a4ea1 ree3507  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: lpolynom.h,v 1.1 2008-08-05 20:44:08 ederc Exp $ */
     4/* $Id: lpolynom.h,v 1.2 2008-08-07 13:18:36 Singular Exp $ */
    55/*
    66* ABSTRACT: f5gb interface
     
    88#ifndef LPOLYNOM_HEADER
    99#define LPOLYNOM_HEADER
    10 #include "mod2.h"
    1110
    1211#ifdef HAVE_F5
     
    1413
    1514// class of a labeled polynomial
    16 class lpoly {
     15class lpoly
     16{
    1717        private:
    1818                poly term;
Note: See TracChangeset for help on using the changeset viewer.