source: git/Singular/interpolation.h @ 471cf4

fieker-DuValspielwiese
Last change on this file since 471cf4 was 471cf4, checked in by Oleksandr Motsak <motsak@…>, 10 years ago
Prepare for moving interpolation.{h,cc} to kernel/ + cleanup NOTE: changed the interface to use STL Vector instead of lists
  • Property mode set to 100644
File size: 395 bytes
Line 
1/*****************************************
2*  Computer Algebra System SINGULAR      *
3*****************************************/
4/*
5* ABSTRACT: ideals of points (with multiplicities)
6*/
7
8#ifndef INTERPOLATION_H
9#define INTERPOLATION_H
10
11#include <vector>
12
13class intvec;
14struct sip_sideal; typedef struct sip_sideal * ideal;
15
16ideal interpolation(const std::vector<ideal>& L, intvec *v);
17
18
19#endif
20
Note: See TracBrowser for help on using the repository browser.