source: git/factory/sm_util.h @ 1162cb

spielwiese
Last change on this file since 1162cb was 1162cb, checked in by Jens Schmidt <schmidt@…>, 27 years ago
* sm_util.h (REArray): new typedef. All references to Array<REvaluation> changed to REArray. * sm_util.h: doc fix * sm_util.h (dinterpol): bug fix of declaration git-svn-id: file:///usr/local/Singular/svn/trunk@516 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1001 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id: sm_util.h,v 1.2 1997-07-15 13:01:08 schmidt Exp $ */
3
4#ifndef INCL_SM_UTIL_H
5#define INCL_SM_UTIL_H
6
7//{{{ docu
8//
9// sm_util.h - header to sm_util.cc.
10//
11// Contributed by Marion Bruder <bruder@math.uni-sb.de>.
12//
13//}}}
14
15#include <config.h>
16
17#include "canonicalform.h"
18#include "cf_reval.h"
19#ifdef macintosh
20#include <::templates:ftmpl_array.h>
21#else
22#include "templates/ftmpl_array.h"
23#endif
24
25typedef REArray Array<REvaluation>;
26
27int countmonome( const CanonicalForm & f );
28
29CanonicalForm Leitkoeffizient( const CanonicalForm & f );
30
31void ChinesePoly( int arraylength, const CFArray & Polys, const CFArray & primes, CanonicalForm & result );
32
33CanonicalForm dinterpol( int d, const CanonicalForm & gi, const CFArray & zwischen, const REvaluation & alpha, int s, const CFArray & beta, int ni, int CHAR );
34
35CanonicalForm sinterpol( const CanonicalForm & gi, const REArray & xi, CanonicalForm* zwischen, int n );
36
37#endif /* ! INCL_SM_UTIL_H */
Note: See TracBrowser for help on using the repository browser.