Changeset ca9096f in git
- Timestamp:
- Aug 16, 2011, 7:31:07 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 643b538e22eb5f58bfb7663b4801ca17c1bfb00a
- Parents:
- 9b57340f94fb367ee993e6e90c527c2c5208501b
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-16 19:31:07+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:21+01:00
- Location:
- Singular
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/mpsr.h
r9b5734 rca9096f 12 12 * 13 13 ***************************************************************/ 14 #ifdef HAVE_MPSR15 16 14 #ifndef __MPSR__ 17 15 #define __MPSR__ 18 16 17 #ifdef HAVE_MPSR 18 19 20 #include <omalloc/omalloc.h> 21 22 #include <coeffs/numbers.h> 23 24 #include <polys/polys.h> 25 #include <polys/monomials/ring.h> 26 27 #include <kernel/structs.h> 28 29 #include <Singular/subexpr.h> 30 19 31 // now the MP include stuff (is surrounded by ifndef there) 20 32 #include <MP.h> 21 22 33 #include <MPT.h> 23 #include <kernel/structs.h>24 #include "subexpr.h"25 #include <omalloc/omalloc.h>26 #include <polys/polys.h>27 #include <coeffs/numbers.h>28 #include <polys/monomials/ring.h>29 34 30 35 /*************************************************************** … … 267 272 268 273 274 #endif // #ifdef HAVE_MPSR 275 269 276 #endif 270 #endif -
Singular/mpsr_Get.cc
r9b5734 rca9096f 629 629 } 630 630 if (rank == 1) 631 id->rank = id RankFreeModule(id);631 id->rank = id_RankFreeModule(id, currRing); 632 632 idTest(id); 633 633 mlv->lv = mpsr_InitLeftv(MODUL_CMD, (void *) id); -
Singular/mpsr_Put.h
r9b5734 rca9096f 18 18 #define __MPSR_PUT__ 19 19 20 #include"mpsr.h" 20 21 #ifdef HAVE_MPSR 21 22 22 23 #include <kernel/structs.h> 23 #include"kernel/febase.h" 24 #include"tok.h" 25 #include"ipid.h" 24 #include <kernel/febase.h> 25 26 #include <Singular/mpsr.h> 27 #include <Singular/tok.h> 28 #include <Singular/ipid.h> 26 29 27 30 /*************************************************************** … … 229 232 extern mpsr_Status_t mpsr_PutMsg(MP_Link_pt l, leftv v); 230 233 234 235 #endif // #ifdef HAVE_MPSR 236 237 231 238 #endif -
Singular/mpsr_Tok.h
r9b5734 rca9096f 13 13 * 14 14 ***************************************************************/ 15 16 #ifdef HAVE_MPSR 17 15 18 #ifndef __MPSR_TOK_H__ 16 19 #define __MPSR_TOK_H__ 17 #include"mpsr.h" 20 21 #include <Singular/mpsr.h> 18 22 19 23 extern mpsr_Status_t mpsr_tok2mp(short tok, MP_DictTag_t *dict, … … 30 34 31 35 #endif // __MPSR_TOK_H__ 36 37 38 #endif // #ifdef HAVE_MPSR -
Singular/mpsr_sl.h
r9b5734 rca9096f 9 9 * Version: $Id$ 10 10 *******************************************************************/ 11 12 #ifndef _SINGULAR_MPSR_SL_H_ 13 #define _SINGULAR_MPSR_SL_H_ 14 15 #ifdef HAVE_MPSR 16 17 11 18 LINKAGE BOOLEAN slOpenMPFile(si_link l, short flag, leftv u); 12 19 LINKAGE MP_Link_pt slOpenMPConnect(int n_argc, char **n_argv); … … 24 31 LINKAGE int Batch_do(const char* port, const char* host); 25 32 33 #endif // #ifdef HAVE_MPSR 34 35 #endif // _SINGULAR_MPSR_SL_H_
Note: See TracChangeset
for help on using the changeset viewer.