source: git/Singular/clapconv.h @ 6f2edc

spielwiese
Last change on this file since 6f2edc was 6ae4f5, checked in by Hans Schönemann <hannes@…>, 27 years ago
* hannes: - corrected scanner.l: parsing of strings in blocks: if (1) { write("","}"); } - corrected ipassign.cc: assignment of "dummy" types: DEF, NONE - corrected sleftv::Print(_), initialisation of _ - added conversion int->def - added CopyD(DEF) - in insert(..): object should not be of type NONE (lists.cc:lInsert0) - added int*intvec, int*intmat to iparith.cc git-svn-id: file:///usr/local/Singular/svn/trunk@145 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.1 KB
Line 
1// emacs edit mode for this file is -*- C++ -*-
2/****************************************
3*  Computer Algebra System SINGULAR     *
4****************************************/
5// $Id: clapconv.h,v 1.3 1997-04-09 12:19:39 Singular Exp $
6/*
7* ABSTRACT: convert data between Singular and factory
8*/
9
10
11#ifndef INCL_SINGCONV_H
12#define INCL_SINGCONV_H
13
14#include "mod2.h"
15#include "structs.h"
16#include "longalg.h"
17#include <singfactory.h>
18
19alg convClapPSingTr ( const CanonicalForm & f );
20CanonicalForm convSingTrClapP( alg p );
21
22poly convClapPSingP ( const CanonicalForm & f );
23CanonicalForm convSingPClapP( poly p );
24
25CanonicalForm convSingAPClapAP ( poly p , const Variable & a );
26poly convClapAPSingAP ( const CanonicalForm & f );
27
28CanonicalForm convSingAClapA ( alg p , const Variable & a );
29alg convClapASingA ( const CanonicalForm & f );
30
31CanonicalForm convSingTrPClapP ( poly p );
32poly convClapPSingTrP ( const CanonicalForm & f );
33
34// CanonicalForm convSingIClapI( int i);a <- by constructor of CanonicalForm
35int convClapISingI( const CanonicalForm & f);
36#endif /* INCL_SINGCONV_H */
Note: See TracBrowser for help on using the repository browser.